MPI_IALLGATHER(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request) | |
IN sendbuf | starting address of send buffer (choice) |
IN sendcount | number of elements in send buffer (non-negative integer) |
IN sendtype | datatype of send buffer elements (handle) |
OUT recvbuf | address of receive buffer (choice) |
IN recvcount | number of elements received from any MPI process (non-negative integer) |
IN recvtype | datatype of receive buffer elements (handle) |
IN comm | communicator (handle) |
OUT request | communication request (handle) |
This call starts a nonblocking variant of MPI_ALLGATHER (see Section Gather-to-all).
MPI_IALLGATHERV(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, request) | |
IN sendbuf | starting address of send buffer (choice) |
IN sendcount | number of elements in send buffer (non-negative integer) |
IN sendtype | datatype of send buffer elements (handle) |
OUT recvbuf | address of receive buffer (choice) |
IN recvcounts | nonnegative integer array (of length group size) containing the number of elements that are received from each MPI process |
IN displs | integer array (of length group size). Entry i specifies the displacement (relative to recvbuf) at which to place the incoming data from MPI process i |
IN recvtype | datatype of receive buffer elements (handle) |
IN comm | communicator (handle) |
OUT request | communication request (handle) |
This call starts a nonblocking variant of MPI_ALLGATHERV (see Section Gather-to-all).