Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
28455 Discussions

How to compile parallel code with MS-MPI on linux

qin__youwei
Beginner
1,185 Views

Hi all,

I am currently doing parallel programming with fortran. I have successfully coded and compiled my code with MS-MPI on windows.

However, I would like to enable the code on linux cluster, which is more powerful. 

I have installed intel17 on cluster, which does support mpiifort. I was wondering how I can successfully run the parallel code on linux with mpiifort

0 Kudos
1 Reply
Steve_Lionel
Honored Contributor III
1,169 Views

To start, you can't use Microsoft MPI on Linux, but there are several MPI implementations you can use there. Intel MPI is one, but there is also OpenMPI and mpich2 (possibly others). You would need to install the chosen library, add its include and library paths to your build, and make sure that your calls are compatible with the chosen library. 

Intel MPI is discussed in the Intel oneAPI HPC Toolkit forum.

0 Kudos
Reply