MPI_SCATTER_INIT(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, root, comm, info, request) | |
IN sendbuf | address of send buffer (choice, significant only at root) |
IN sendcount | number of elements sent to each MPI process (non-negative integer, significant only at root) |
IN sendtype | datatype of send buffer elements (handle, significant only at root) |
OUT recvbuf | address of receive buffer (choice) |
IN recvcount | number of elements in receive buffer (non-negative integer) |
IN recvtype | datatype of receive buffer elements (handle) |
IN root | rank of sending MPI process (integer) |
IN comm | communicator (handle) |
IN info | info argument (handle) |
OUT request | communication request (handle) |
Creates a persistent collective communication request for the scatter operation.
MPI_SCATTERV_INIT(sendbuf, sendcounts, displs, sendtype, recvbuf, recvcount, recvtype, root, comm, info, request) | |
IN sendbuf | address of send buffer (choice, significant only at root) |
IN sendcounts | nonnegative integer array (of length group size) specifying the number of elements to send to each MPI process (significant only at root) |
IN displs | integer array (of length group size). Entry i specifies the displacement (relative to sendbuf) from which to take the outgoing data to MPI process i (significant only at root) |
IN sendtype | datatype of send buffer elements (handle, significant only at root) |
OUT recvbuf | address of receive buffer (choice, significant only at root) |
IN recvcount | number of elements in receive buffer (non-negative integer) |
IN recvtype | datatype of receive buffer elements (handle) |
IN root | rank of sending MPI process (integer) |
IN comm | communicator (handle) |
IN info | info argument (handle) |
OUT request | communication request (handle) |
Creates a persistent collective communication request for the scatterv operation.