2004-01-20 09:12:28 +03:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "lam_config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-05-08 03:44:49 +04:00
|
|
|
#include "mca/coll/coll.h"
|
|
|
|
#include "communicator/communicator.h"
|
2004-01-20 09:12:28 +03:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Allgather = PMPI_Allgather
|
|
|
|
#endif
|
|
|
|
|
2004-04-20 22:50:43 +04:00
|
|
|
#if LAM_PROFILING_DEFINES
|
|
|
|
#include "mpi/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2004-05-08 03:44:49 +04:00
|
|
|
static char FUNC_NAME[] = "MPI_Allgather";
|
2004-01-20 09:12:28 +03:00
|
|
|
|
|
|
|
int MPI_Allgather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
2004-05-08 03:44:49 +04:00
|
|
|
void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
|
|
|
MPI_Comm comm)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
mca_coll_base_allgather_fn_t func;
|
|
|
|
|
|
|
|
if (MPI_PARAM_CHECK) {
|
|
|
|
if (MPI_COMM_NULL == comm) {
|
|
|
|
return LAM_ERRHANDLER_INVOKE(MPI_COMM_WORLD, MPI_ERR_COMM,
|
|
|
|
FUNC_NAME);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((MPI_DATATYPE_NULL == sendtype)
|
|
|
|
|| (MPI_DATATYPE_NULL == recvtype)) {
|
|
|
|
return LAM_ERRHANDLER_INVOKE(comm, MPI_ERR_TYPE, FUNC_NAME);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((sendcount < 0) || (recvcount < 0)) {
|
|
|
|
return LAM_ERRHANDLER_INVOKE(comm, MPI_ERR_COUNT, FUNC_NAME);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func = comm->c_coll.coll_allgather_intra;
|
|
|
|
|
|
|
|
if (NULL == func) {
|
|
|
|
return LAM_ERRHANDLER_INVOKE(comm, MPI_ERR_OTHER, FUNC_NAME);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Call the coll SSI to actually perform the allgather */
|
|
|
|
|
|
|
|
err = func(sendbuf, sendcount, sendtype, recvbuf, recvcount,
|
|
|
|
recvtype, comm);
|
|
|
|
|
|
|
|
LAM_ERRHANDLER_RETURN(err, comm, MPI_ERR_UNKNOWN, FUNC_NAME);
|
2004-01-20 09:12:28 +03:00
|
|
|
}
|
|
|
|
|