1,453
edits
Changes
Humus
,→Job scheduling
=== Job scheduling ===
The Humus nodes carry NVidia A30 GPUs, so the following command will run `jobscript`
on one entire node:
sbatch --time=6:0:0 --gres=gpu:a30:1 --cpus-per-task=64 --mem=0 jobscript
If the data resides on (for example) humus217 but not on humus216,
you should specify which node the job should execute on with `--nodelist`.
Don't omit to specify the CPU, GPU and memory you need though! For example:
sbatch --nodelist=humus217 --time=6:0:0 --gres=gpu:a30:1 --cpus-per-task=64 --mem=0 jobscript
If you do not need the GPU for a certain calculation, or you need less than
an entire node's CPUs and memory, please specify only what you need.
The scheduler can run more than one such job on the node at a time. For example:
sbatch --time=24:0:0 --cpus-per-task=1 --mem=4G jobscript