...
Codeblock | ||||
---|---|---|---|---|
| ||||
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
- binary compiled with Intel compiler, see also Compilation Guide.
#!/bin/bash
#SBATCH --nodes=1
#SBATCH --partition=standard96:test
export OMP_PROC_BIND=spread
export OMP_NUM_THREADS=24
./yourprogram
Important compiler flags
To make full use of the vectorizing capabilities of the CPUs, AVX512 instructions and the 512bit ZMM registers can be used with the following compile flags with the Intel compilers:
...