Versionen im Vergleich

Schlüssel

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

...

Partition nameNode numberGPU hardwareDescription
gpu-a100424x A100 per Nodefull node exclusive
gpu-a100:sharedFIXME1 to 4 A100shared node access, exclusive use of the requested GPUs
gpu-a100:shared:mig11 to 28 1g.10gb A100 MIG slices

shared node access, shared GPU devices via Multi Instance GPU. Each of the four GPUs is logically split into usable seven slices with 10 GB of GPU memory associated to each slice

gpu-a1004x A100 per Nodefull node exclusive

# run command on two MPI nodes in the exclusive use partition
srun -N 2 -p gpu-a100 example_ cmd

gpu-a100:shared1 to 4 A100shared node access, exclusive use of the requested GPUs

# run command using GPUs (-G/--gpus) in the shared node partition
srun -G 2 -p gpu-a100:shared example_cmd

gpu-a100:shared:mig1 to 28 1g.10gb A100 MIG slicesshared node access, shared GPU devices via Multi Instance GPU.
Each of the four GPUs is logically split into usable seven slices with 10 GB of GPU memory associated to each slice

# run command using one Multi Instance GPU slice on the according partition
srun -G 1 -p gpu-a100:shared:mig example_cmd



Codeblock
titleExample: exclusive usage of nodes
> srun --nodes=2 --partition=gpu-a100 example_cmd

...