Jump to content

Message Passing Interface

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Egil (talk | contribs) at 18:55, 4 May 2003 (Message Passing Interface from foldoc). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

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 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 optimised for the hardware it runs on).

Article taken from Foldoc