Versionen im Vergleich

Schlüssel

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

...

Codeblock
languagebash
titleIntel Compiler
collapsetrue
module load intel
module load impi
mpiicc -Wl,-rpath,$LD_RUN_PATH -o hello.bin hello.c

mpiifortmpiifort -Wl,-rpath,$LD_RUN_PATH -o hello.bin hello.f90 

mpiicpcmpiicpc -Wl,-rpath,$LD_RUN_PATH -o hello.bin hello.cpp


Codeblock
languagebash
titleGNU Compiler
collapsetrue
module load gcc
module load impi
mpigcc -o hello.bin hello.c 
mpif90 -o hello.bin hello.f90  
mpigxx -o hello.bin hello.cpp

...