Message Passing Interface
|
The Message Passing Interface (MPI) is a computer communications protocol. It is a de facto standard for communication among the nodes running a parallel program on a distributed memory system. MPI is a library of routines that can be called from Fortran, C and C++ programs. MPI's advantage over older message passing libraries is that it is both portable (because MPI has been implemented for almost every distributed memory architecture) and fast (because each implementation is optimized for the hardware it runs on).
The most common implementation in use is MPICH. Also available is LAM-MPI (http://www.lam-mpi.org/).
See also
- OpenMP
- Unified Parallel C
- Occam programming language
- Linda (coordination language)
- Parallel Virtual Machine
- Calculus of Communicating Systems
- Calculus of Broadcasting Systems
References
- This article was originally based on material from the Free On-line Dictionary of Computing, which is licensed under the GFDL.
External links
- MPI DMOZ category (http://dmoz.org/Computers/Parallel_Computing/Programming/Libraries/MPI/)
- MPICH (http://www-unix.mcs.anl.gov/mpi/mpich/)
- LAM/MPI (http://www.lam-mpi.org/)
- SCore MPI (http://www.pccluster.org/)
- Scali MPI (http://www.scali.com/)
- MVAPICH: MPI over InfiniBand (http://nowlab.cis.ohio-state.edu/projects/mpi-iba/)
- Parawiki page for MPI (http://parawiki.plm.eecs.uni-kassel.de/parawiki/index.php/MPI)
- Global Arrays (http://www.emsl.pnl.gov/docs/global/ga.html)de:Message Passing Interface