mpi send recv example
Example 1: mpi_send and mpi_recv
MPI_Send(void* data, int count, MPI_Datatype datatype,
int destination, int tag, MPI_Comm communicator)
MPI_Recv(void* data, int count, MPI_Datatype datatype,
int source, int tag, MPI_Comm communicator, MPI_Status* status)
Example 2: mpi_send and mpi_recv
MPI_Send(
void* data,
int count,
MPI_Datatype datatype,
int destination,
int tag,
MPI_Comm communicator)