MPI is a standard library for performing parallel processing using a distributed memory model. The Ruby, Owens, and Pitzer clusters at OSC can use the OpenMPI implementation of the Message Passing Interface (MPI).
Availability and Restrictions
Versions
Installations are available for the Intel, PGI, and GNU compilers. The following versions of OpenMPI are available on OSC systems:
Version | Owens | Pitzer | Ascend | Notes |
---|---|---|---|---|
1.10.7-hpcx | X | X | ||
1.10.7 | X | X | ||
2.1.6-hpcx | X | X | ||
2.1.6 | X | X | ||
3.1.4-hpcx | X | X | ||
3.1.4 | X | X | ||
3.1.6-hpcx | X | X | ||
3.1.6 | X | |||
4.0.3-hpcx | X* | X* | ||
4.0.3 | X | X | ||
4.1.2-hpcx | X | X | ||
4.1.3 | X* |
You can use module spider openmpi
to view available modules for a given machine. Feel free to contact OSC Help if you need other versions for your work.
Access
OpenMPI is available to all OSC users. If you have any questions, please contact OSC Help.
Publisher/Vendor/Repository and License Type
https://www.open-mpi.org, Open source
Usage
Setup on OSC Clusters
To set up your environment for using the MPI libraries, you must load the appropriate module. On any OSC system, this is performed by:
module load openmpi
You will get the default version for the compiler you have loaded.
Building With MPI
To build a program that uses MPI, you should use the compiler wrappers provided on the system. They accept the same options as the underlying compiler. The commands are shown in the following table:
C | mpicc |
C++ | mpicxx |
FORTRAN 77 | mpif77 |
Fortran 90 | mpif90 |
For example, to build the code my_prog.c using the -O2 option, you would use:
mpicc -o my_prog -O2 my_prog.c
In rare cases, you may be unable to use the wrappers. In that case, you should use the environment variables set by the module.
Variable | Use |
---|---|
$MPI_CFLAGS |
Use during your compilation step for C programs. |
$MPI_CXXFLAGS |
Use during your compilation step for C++ programs. |
$MPI_FFLAGS |
Use during your compilation step for Fortran 77 programs. |
$MPI_F90FLAGS |
Use during your compilation step for Fortran 90 programs. |
Batch Usage
Programs built with MPI can only run in the batch environment at OSC. For information on starting MPI programs using the command srun see Job Scripts.
Be sure to load the same compiler and OpenMPI modules at execution time as at build time.
Run a MPI program
SRUN
We recommend the command srun
as the default MPI launcher. Please refer to Pitzer Programming Environment or Owens Programming Environment for detail.
Known Issues
The use of MPI_THREAD_MULTIPLE with OpenMPI-HPCX 4.x is not supported
Update: 11/29/2022
Version: [Owens] openmpi/4.0.3-hpcx, openmpi/4.1.2-hpcx, openmpi/4.1.4-hpcx
[Ascend] openmpi/4.1.3
If a threading code uses MPI_Init_thread with MPI_THREAD_MULTIPLE, it will fail because the UCX framework from the HPCX package is built without multi-threading support. UCX is the default framework for OMPI 4.0 and above.
Cannot use mpiexec/mpirun from OpenMPI in an interactive session
Update: 2/22/2022
Version: All
The mpiexec
and mpirun
commands are not part of the MPI standard and may differ slightly between MPI implementations. On February 22, 2022, OSC upgraded Slurm to version 21.08.5, and we discovered additional issues with mpiexec
and mpirun
. Therefore, we recommend using srun
in all cases.
If you need to use mpiexec
and your job fails, please contact OSC Help for assistance.
Further Reading
- The Message Passing Interface (MPI) standard, http://www.mcs.anl.gov/research/projects/mpi/
- MPI Training Course