HomeMPI Programming MPI 1.1 Index Using MPI on the AC <- Prev -- Index -- Next ->

Communication modes

Sender modeNotesSynchronous?
Synchronous sendMessage goes directly to receiver.
Only completes when the receive has begun
synchronous
Buffered sendMessage is copied in to a "buffer" (provided by the application).
Always completes (unless an error occurs), irrespective of receiver.
asynchronous
Standard sendEither synchronous or buffered (into a fixed size buffer
provided by MPI system)
both/hybrid
Ready sendAssumes the receiver is ready.
Always completes (unless an error occurs), irrespective of whether
the receive was ready.
neither
ReceiveCompletes when a message has arrived 

APAC NATIONAL FACILITY<- Prev -- Index -- Next ->