The filenames, paths, and some values below are things you will probably want to change. In some cases, values/names have been used to demonstrate possibilities that you could employ (in a slightly different way). DirectiveExplanation(s) | Description of purpose |
---|
#PBS -V
| Export environment variables to the batch job | #PBS -j oe #PBS -o /tmp/output.$PBS_O_JOBID
| Merge standard output and standard error streams into the named file | #PBS -m ae
| Send mail at batch job abort/exit | #PBS -N job_name
| Assign a name to the batch job | #PBS -l pmem=4gb
| Request that 4GB of memory be reserved for the batch job | #PBS -l nodes=1:ppn=2
| Request that 2 CPU cores be reserved for the batch job |
|