Neutral Binding
MPI_RECV (buf, count, datatype, source, tag, comm, status) [ OUT buf] initial address of receive buffer (choice) [ IN count] number of elements in receive buffer (integer) [ IN datatype] datatype of each receive buffer element (handle) [ IN source] rank of source (integer) [ IN tag] message tag (integer) [ IN comm] communicator (handle) [ OUT status] status object (Status)
C Binding
int MPI_Recv(void* buf, int count, MPI_Datatype datatype, int source, int tag, MPI_Comm comm, MPI_Status *status)
FORTRAN Binding
MPI_RECV(BUF, COUNT, DATATYPE, SOURCE, TAG, COMM, STATUS, IERROR) <type> BUF(*) INTEGER COUNT, DATATYPE, SOURCE, TAG, COMM, STATUS(MPI_STATUS_SIZE), IERROR
C++ Binding (in the MPI:: namespace)
void Comm::Recv(void* buf, int count, const Datatype& datatype, int source, int tag, Status& status) const
void Comm::Recv(void* buf, int count, const Datatype& datatype, int source, int tag) const
|
|