2004-01-25 04:51:49 +03:00
|
|
|
/*
|
|
|
|
* $HEADERS$
|
|
|
|
*/
|
|
|
|
#include "lam_config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-01-25 04:51:49 +03:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Gatherv = PMPI_Gatherv
|
|
|
|
#endif
|
|
|
|
|
|
|
|
int MPI_Gatherv(void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
|
|
|
void *recvbuf, int *recvcounts, int *displs,
|
|
|
|
MPI_Datatype recvtype, int root, MPI_Comm comm) {
|
|
|
|
return MPI_SUCCESS;
|
|
|
|
}
|