Versionen im Vergleich

Schlüssel

  • Diese Zeile wurde hinzugefügt.
  • Diese Zeile wurde entfernt.
  • Formatierung wurde geändert.

...

  1. Login to a login node of GPU PVC partition.

  2. Ask the slurm batch system for an allocation of nodes within a slurm partition of the GPU PVC partition.

  3. Start a job on the allocated nodes.

  4. 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 ...