The syntax of the blocking send operation is given below.
MPI_SEND(buf, count, datatype, dest, tag, comm) | |
IN buf | initial address of send buffer (choice) |
IN count | number of elements in send buffer (non-negative integer) |
IN datatype | datatype of each send buffer element (handle) |
IN dest | rank of destination (integer) |
IN tag | message tag (integer) |
IN comm | communicator (handle) |
int MPI_Send(void* buf, int count, MPI_Datatype datatype, int dest, int tag, MPI_Comm comm)
MPI_SEND(BUF, COUNT, DATATYPE, DEST, TAG, COMM, IERROR)
<type> BUF(*)
INTEGER COUNT, DATATYPE, DEST, TAG, COMM, IERROR
{ void MPI::Comm::Send(const void* buf, int count, const MPI::Datatype& datatype, int dest, int tag) const (binding deprecated, see Section Deprecated since MPI-2.2
) }
The blocking semantics of this call are described in Section Communication Modes
.
Up: Blocking Send and Receive Operations
Next: Message Data
Previous: Blocking Send and Receive Operations
Return to MPI-2.2 Standard Index
Return to MPI Forum Home Page
(Unofficial) MPI-2.2 of September 4, 2009
HTML Generated on September 10, 2009