2.13.2.1. MPI_Send Function

int MPI_Send (
    const void *buf, int count, MPI_Datatype datatype,
    int dest, int tag, MPI_Comm comm);
int MPI_Send_c (
    const void *buf, MPI_Count count, MPI_Datatype datatype,
    int dest, int tag, MPI_Comm comm);
buf

address of send buffer

count

number of elements in send buffer

datatype

datatype of each send buffer element

dest

rank of destination

tag

message tag

comm

communicator