Versionen im Vergleich

Schlüssel

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

...

Partition nameNodesunits per nodeGPU hardwareDescription
gpu-a100424NVIDIA Tesla A100 80GB full node exclusive
gpu-a100:shared54NVIDIA Tesla A100 80GB shared node access, exclusive use of the requested GPUs
gpu-a100:shared:mig1281 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


Codeblock
titleExample: exclusive Exclusive usage of two nodes
$ srun --nodes=2 --partition=gpu-a100 example_cmd

...

Codeblock
languagebash
titleExample: Request two GPUs within the shared partition
# Note: The two GPUs may be located on different nodes:.
$ srun --gpus=2 --partition=gpu-a100:shared example_cmd


Codeblock
languagebash
titleExample: Request a signle single Multi Instance GPU slice on the according Slurm partition
$ srun --gpus=1 --partition=gpu-a100:shared:mig example_cmd

...