Neutral Binding
MPI_ALLGATHER( sendbuf, sendcount, sendtype, recvbuf, recvcount, recvtype, comm) [ IN sendbuf] starting address of send buffer (choice) [ IN sendcount] number of elements in send buffer (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 (integer) [ IN recvtype] data type of receive buffer elements (handle) [ IN comm] communicator (handle)
C Binding
int MPI_Allgather(void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount, MPI_Datatype recvtype, MPI_Comm comm)
FORTRAN Binding
MPI_ALLGATHER(SENDBUF, SENDCOUNT, SENDTYPE, RECVBUF, RECVCOUNT, RECVTYPE, COMM, IERROR) <type> SENDBUF(*), RECVBUF(*) INTEGER SENDCOUNT, SENDTYPE, RECVCOUNT, RECVTYPE, COMM, IERROR
C++ Binding (in the MPI:: namespace)
void Intracomm::Allgather(const void* sendbuf, int sendcount, const Datatype& sendtype, void* recvbuf, int recvcount, const Datatype& recvtype) const
|
|