Neutral Binding
MPI_PROBE(source, tag, comm, status) [ IN source] source rank, or MPI_ANY_SOURCE (integer) [ IN tag] tag value, or MPI_ANY_TAG (integer) [ IN comm] communicator (handle) [ OUT status] status object (Status)
C Binding
int MPI_Probe(int source, int tag, MPI_Comm comm, MPI_Status *status)
FORTRAN Binding
MPI_PROBE(SOURCE, TAG, COMM, STATUS, IERROR) INTEGER SOURCE, TAG, COMM, STATUS(MPI_STATUS_SIZE), IERROR
C++ Binding (in the MPI:: namespace)
void Comm::Probe(int source, int tag, Status& status) const
void Comm::Probe(int source, int tag) const
|
|