...
Login to a login node of GPU PVC partition.
Ask the slurm batch system for an allocation of nodes within a slurm partition of the GPU PVC partition.
Start a job on the allocated nodes.
Stop the allocation of nodes.
Ask for an allocation
text
Codeblock |
---|
bgilogin1> salloc --time=00:10:00 --nodes=2 --partition=gpu-pvc bgilogin1> squeue -u myusername ... 8394731 gpu-pvc interact ... |
Start a job
Codeblock |
---|
bgilogin1> srun --ntasks-per-node=2 mycode
... my output ... |
Stop allocation
sdsd
Codeblock |
---|
bgilogin1> exit
salloc: Relinquishing job allocation 8394731
bgilogin1> squeue -u myusername
... nothing ... |