Versionen im Vergleich

Schlüssel

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

...

Codeblock
titleOpenMP parallel code
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

The examples cover the setup

Codeblock
titleSerial code
collapsetrue
#!/bin/bash
#SBATCH --nodes=1
#SBATCH --partition=standard96:test
./hello.bin

...