


| MPI_IALLTOALL(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request) | |
| IN sendbuf | starting address of send buffer (choice) | 
| IN sendcount | number of elements sent to each process (non-negative integer) | 
| IN sendtype | data type of send buffer elements (handle) | 
| OUT recvbuf | address of receive buffer (choice) | 
| IN recvcount | number of elements received from any process (non-negative integer) | 
| IN recvtype | data type of receive buffer elements (handle) | 
| IN comm | communicator (handle) | 
| OUT request | communication request (handle) | 
 
  int MPI_Ialltoall(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request) 
  
 
  MPI_Ialltoall(sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm, request, ierror) 
 TYPE(*), DIMENSION(..), INTENT(IN), ASYNCHRONOUS :: sendbuf 
TYPE(*), DIMENSION(..), ASYNCHRONOUS :: recvbuf 
INTEGER, INTENT(IN) :: sendcount, recvcount 
TYPE(MPI_Datatype), INTENT(IN) :: sendtype, recvtype 
TYPE(MPI_Comm), INTENT(IN) :: comm 
TYPE(MPI_Request), INTENT(OUT) :: request 
INTEGER, OPTIONAL, INTENT(OUT) :: ierror 
  
  MPI_IALLTOALL(SENDBUF, SENDCOUNT, SENDTYPE, RECVBUF, RECVCOUNT, RECVTYPE, COMM, REQUEST, IERROR) 
 <type> SENDBUF(*), RECVBUF(*) 
INTEGER SENDCOUNT, SENDTYPE, RECVCOUNT, RECVTYPE, COMM, REQUEST, IERROR 
  
This call starts a nonblocking variant of MPI_ALLTOALL (see Section All-to-All Scatter/Gather ).

  int MPI_Ialltoallv(const void* sendbuf, const int sendcounts[], const int sdispls[], MPI_Datatype sendtype, void* recvbuf, const int recvcounts[], const int rdispls[], MPI_Datatype recvtype, MPI_Comm comm, MPI_Request *request) 
  
 
  MPI_Ialltoallv(sendbuf, sendcounts, sdispls, sendtype, recvbuf, recvcounts, rdispls, recvtype, comm, request, ierror) 
 TYPE(*), DIMENSION(..), INTENT(IN), ASYNCHRONOUS :: sendbuf 
TYPE(*), DIMENSION(..), ASYNCHRONOUS :: recvbuf 
INTEGER, INTENT(IN), ASYNCHRONOUS :: sendcounts(*), sdispls(*), recvcounts(*), rdispls(*) 
TYPE(MPI_Datatype), INTENT(IN) :: sendtype, recvtype 
TYPE(MPI_Comm), INTENT(IN) :: comm 
TYPE(MPI_Request), INTENT(OUT) :: request 
INTEGER, OPTIONAL, INTENT(OUT) :: ierror 
  
  MPI_IALLTOALLV(SENDBUF, SENDCOUNTS, SDISPLS, SENDTYPE, RECVBUF, RECVCOUNTS, RDISPLS, RECVTYPE, COMM, REQUEST, IERROR) 
 <type> SENDBUF(*), RECVBUF(*) 
INTEGER SENDCOUNTS(*), SDISPLS(*), SENDTYPE, RECVCOUNTS(*), RDISPLS(*), RECVTYPE, COMM, REQUEST, IERROR 
  
This call starts a nonblocking variant of MPI_ALLTOALLV (see Section All-to-All Scatter/Gather ).

  int MPI_Ialltoallw(const void* sendbuf, const int sendcounts[], const int sdispls[], const MPI_Datatype sendtypes[], void* recvbuf, const int recvcounts[], const int rdispls[], const MPI_Datatype recvtypes[], MPI_Comm comm, MPI_Request *request) 
  
 
  MPI_Ialltoallw(sendbuf, sendcounts, sdispls, sendtypes, recvbuf, recvcounts, rdispls, recvtypes, comm, request, ierror) 
 TYPE(*), DIMENSION(..), INTENT(IN), ASYNCHRONOUS :: sendbuf 
TYPE(*), DIMENSION(..), ASYNCHRONOUS :: recvbuf 
INTEGER, INTENT(IN), ASYNCHRONOUS :: sendcounts(*), sdispls(*), recvcounts(*), rdispls(*) 
TYPE(MPI_Datatype), INTENT(IN), ASYNCHRONOUS :: sendtypes(*), recvtypes(*) 
TYPE(MPI_Comm), INTENT(IN) :: comm 
TYPE(MPI_Request), INTENT(OUT) :: request 
INTEGER, OPTIONAL, INTENT(OUT) :: ierror 
  
  MPI_IALLTOALLW(SENDBUF, SENDCOUNTS, SDISPLS, SENDTYPES, RECVBUF, RECVCOUNTS, RDISPLS, RECVTYPES, COMM, REQUEST, IERROR) 
 <type> SENDBUF(*), RECVBUF(*)
INTEGER SENDCOUNTS(*), SDISPLS(*), SENDTYPES(*), RECVCOUNTS(*), RDISPLS(*), RECVTYPES(*), COMM, REQUEST, IERROR 
  
This call starts a nonblocking variant of MPI_ALLTOALLW (see Section All-to-All Scatter/Gather ).


