MPI_NEIGHBOR_ALLGATHER_INIT(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, info, request) | |
IN sendbuf | starting address of send buffer (choice) |
IN sendcount | number of elements sent to each neighbor (non-negative integer) |
IN sendtype | datatype of send buffer elements (handle) |
OUT recvbuf | starting address of receive buffer (choice) |
IN recvcount | number of elements received from each neighbor (non-negative integer) |
IN recvtype | datatype of receive buffer elements (handle) |
IN comm | communicator with associated virtual topology (handle) |
IN info | info argument (handle) |
OUT request | communication request (handle) |
Creates a persistent collective communication request for the neighborhood allgather operation.
MPI_NEIGHBOR_ALLGATHERV_INIT(sendbuf, sendcount, sendtype, recvbuf, recvcounts, displs, recvtype, comm, info, request) | |
IN sendbuf | starting address of send buffer (choice) |
IN sendcount | number of elements sent to each neighbor (non-negative integer) |
IN sendtype | datatype of send buffer elements (handle) |
OUT recvbuf | starting address of receive buffer (choice) |
IN recvcounts | nonnegative integer array (of length indegree) containing the number of elements that are received from each neighbor |
IN displs | integer array (of length indegree). Entry i specifies the displacement (relative to recvbuf) at which to place the incoming data from neighbor i |
IN recvtype | datatype of receive buffer elements (handle) |
IN comm | communicator with associated virtual topology (handle) |
IN info | info argument (handle) |
OUT request | communication request (handle) |
Creates a persistent collective communication request for the neighborhood allgatherv operation.