Sending a message
C:
int MPI_Ssend(void *buf, int count,
MPI_Datatype datatype, int dest,
int tag, MPI_Comm comm)
Fortran:
subroutine MPI_Ssend(buf, count, datatype, dest,
tag, comm, ierror)
<type> buf(*)
integer count, datatype, dest, tag
integer comm, ierror
|