Versionen im Vergleich

Schlüssel

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

To build and execute code on the GPU A100 clusterpartition, please login to

Code build

For code generation we recommend the software package NVIDIA hpcx which is a combination of compiler and powerful libraries, like e.g. MPI.

...

Codeblock
languagetext
titleMPI + OpenMP for GPU
bgnlogin1 $ module load nvhpc-hpcx/23.1
bgnlogin1 $ module list
Currently Loaded Modulefiles: ... 4) hpcx   5) nvhpc-hpcx/23.1
bgnlogin1 $ mpicc -mp -target=gpu mpi_openmp_gpu.c -o mpi_openmp_gpu.bin

...

All available slurm partitions for the A100 GPU partition you can see on Slurm partitions GPU A100.

Codeblock
languagetext
titleJob script for plain OpenMP
linenumberstrue
#!/bin/bash
#SBATCH --partition=gpu-a100:shared
#SBATCH --gres=gpu:41
#SBATCH --nodes=1
#SBATCH --ntasks-per-node=72

./openmp_gpu.bin


Codeblock
languagetext
titleJob script for MPI + OpenMPlinenumberstrue
#!/bin/bash
#SBATCH --partition=gpu-a100
#SBATCH --gres=gpu:4
#SBATCH --nodes=2
#SBATCH --ntasks-per-node=72

module load nvhpc-hpcx/23.1
mpirun --np 8 --map-by ppr:2:socket:pe=1 ./mpi_openmp_gpu.bin

...