Versionen im Vergleich

Schlüssel

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

...

For code compilation you can choose one of the two compilers Intel or Gnu. Both compilers are able to include the Intel MPI library.

Codeblock
titleIntelMPI, intel
collapsetrue
module load intel/192024.0.52
module load impi/20192021.513
mpiicc -Wl,-rpath,$LD_RUN_PATH -o hello.bin hello.c
mpiifort export I_MPI_CC=icx
mpiicc -Wl,-rpath,$LD_RUN_PATH -o hello.bin hello.f90
mpiicpc -Wl,-rpath,$LD_RUN_PATH -o hello.bin hello.cppc

Code execution

To execute your code you need to

...