Versionen im Vergleich

Schlüssel

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

...

Codeblock
titleOpenMP
collapsetrue
module load intel
icc -qopenmp -o hello.bin hello.c
ifort -qopenmp -o hello.bin hello.f90 
icpc -qopenmp -o hello.bin hello.cpp

Code execution

You can run a single OpenMP code. The examples cover the setup

  • 1 node,
  • 1 OpenMP code running.
Codeblock
titleSerial
collapsetrue
#SBATCH --nodes=1
./hello.bin

...