Receiving a message
C:
int MPI_Recv(void *buf, int count,
MPI_Datatype datatype, int source,
int tag, MPI_Comm comm,
MPI_Status *status);
Fortran:
subroutine MPI_Recv(buf, count, datatype, source, tag,
comm, status, ierror)
<type> buf(*)
integer count, datatype, source, tag, comm, ierror
integer status(MPI_STATUS_SIZE)
|