Intel MPI
Scenarios
This section describes how to install and use Intel MPI (for example, l_mpi_2018.0.128) on an ECS.
Prerequisites
You have configured the ECS password-free login.
Procedure
- Install Intel MPI.
- Download Intel MPI.
Download path: https://software.intel.com/en-us/intel-mpi-library
- Run the following commands to decompress and install Intel MPI:
For example, run the following commands to decompress and install l_mpi_2018.0.128.tgz:
# tar -xvf l_mpi_2018.0.128.tgz
# cd l_mpi_2018.0.128/
# ./install.sh
Figure 1 Successful Intel MPI installation
- Download Intel MPI.
- Configure environment variables.
- Add the following statements in ~/.bashrc as a common user:
export PATH=$PATH:/opt/intel/impi/2018.0.128/bin64
export LD_LIBRARY_PATH=/opt/intel/impi/2018.0.128/lib64
- Run the following command to import environment variables:
# source ~/.bashrc
- Add the following statements in ~/.bashrc as a common user:
- Run the following command to check whether environment variables are imported successfully:
# which mpirun
If information shown in Figure 2 is displayed, the environment variables have been imported.
- Run the following commands to run Intel MPI on an ECS:
- Run the following commands to generate an executable file:
# cd
# mpicc hello.c -o intel_hello
- Run the following command to run Intel MPI on an ECS:
# mpirun -np 2 /root/intel_hello
Figure 3 Running Intel MPI on an ECS
- Run the following commands to generate an executable file:
Last Article: Spectrum MPI
Next Article: Platform MPI

Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.