Skip to content

Instantly share code, notes, and snippets.

@Atlas7
Last active August 6, 2017 17:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Atlas7/32abc54fa1158926a2d43fc7f261c147 to your computer and use it in GitHub Desktop.
Save Atlas7/32abc54fa1158926a2d43fc7f261c147 to your computer and use it in GitHub Desktop.
How to compile (C, C++, Fortran) codes with Intel Parallel Studio XE

Intel Colfax Cluster - Notes - Index Page


It's all on the Colfax Get Started page. But adding here for ease of quick references.

Compile codes with Intel Parallel Studio XE

Standard Fortran job:

ifort -o hello hello.f95 

Standard C job:

icc -o hello hello.c

Standard C++ job:

icpc -o hello hello.cc

MPI C++ job:

mpiicpc -o hello_mpi hello_mpi.cc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment