Versionen im Vergleich

Schlüssel

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

...

For examples for code execution, please visit Slurm partition CPU CLX.

Code compilation

Intel oneAPI compiler

Codeblock
titleSerial icccode execution
collapsetrue
module load intel
iccicx -o hello.bin hello.c
ifortifx -o hello.bin hello.f90
icpcicpx -o hello.bin hello.cpp


Codeblock
titleOpenMP iccthreaded code execution
collapsetrue
module load intel
iccicx -qopenmpfopenmp -o hello.bin hello.c
ifortifx -qopenmpfopenmp -o hello.bin hello.f90 
icpcicpx -qopenmpfopenmp -o hello.bin hello.cpp

...

GNU compiler

Codeblock
titleSerial gcccode execution
collapsetrue
module load gcc
gcc -o hello.bin hello.c
gfortran -o hello.bin hello.f90
g++ -o hello.bin hello.cpp


Codeblock
titleOpenMP gccthreaded code execution
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

...