#include "mpi.h" int MPI_Send( buf, count, datatype, dest, tag, comm ) void *buf; int count, dest, tag; MPI_Datatype datatype; MPI_Comm comm;
buf | initial address of send buffer (choice)
| |
count | number of elements in send buffer (nonnegative integer)
| |
datatype | datatype of each send buffer element (handle)
| |
dest | rank of destination (integer)
| |
tag | message tag (integer)
| |
comm | communicator (handle)
|
All MPI objects (e.g., MPI_Datatype, MPI_Comm) are of type INTEGERin Fortran.