Skip to content
Snippets Groups Projects

Anselm removal from doc

Merged Jan Siwiec requested to merge anselm_removal_from_doc into master
1 unresolved thread
Files
49
@@ -47,31 +47,6 @@ $ find . -name 'file*' > tasklist
Then we create a jobscript:
#### Anselm
```bash
#!/bin/bash
#PBS -A PROJECT_ID
#PBS -q qprod
#PBS -l select=1:ncpus=16,walltime=02:00:00
# change to local scratch directory
SCR=/lscratch/$PBS_JOBID
mkdir -p $SCR ; cd $SCR || exit
# get individual tasks from tasklist with index from PBS JOB ARRAY
TASK=$(sed -n "${PBS_ARRAY_INDEX}p" $PBS_O_WORKDIR/tasklist)
# copy input file and executable to scratch
cp $PBS_O_WORKDIR/$TASK input ; cp $PBS_O_WORKDIR/myprog.x .
# execute the calculation
./myprog.x < input > output
# copy output file to submit directory
cp output $PBS_O_WORKDIR/$TASK.out
```
#### Salomon
```bash
@@ -105,13 +80,6 @@ If running a huge number of parallel multicore (in means of multinode multithrea
To submit the job array, use the `qsub -J` command. The 900 jobs of the [example above][5] may be submitted like this:
#### Anselm
```console
$ qsub -N JOBNAME -J 1-900 jobscript
12345[].dm2
```
#### Salomon
```console
Loading