Versionen im Vergleich

Schlüssel

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

...

Codeblock
titleOpenMP gcc
collapsetrue
module load gcc
gcc -fopenmp -o hello.bin hello.c
gfortran -fopenmp -o hello.bin hello.f90
g++ -fopenmp -o hello.bin hello.cpp

Code execution

You can run a single OpenMP code. The examples To execute your code you need to

  1. have a binary, the result of the code compilation,
  2. have a slurm job script,
  3. submit the slurm jobs script.

The examples for slurm jobs scripts cover the setup

  • 1 node,
  • 1 OpenMP code running.

...