19 строки
421 B
C
19 строки
421 B
C
|
/*
|
||
|
* $HEADERS$
|
||
|
*/
|
||
|
#include "lam_config.h"
|
||
|
#include <stdio.h>
|
||
|
|
||
|
#include "mpi.h"
|
||
|
#include "mpi/interface/c/bindings.h"
|
||
|
|
||
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
||
|
#pragma weak MPI_Gather = PMPI_Gather
|
||
|
#endif
|
||
|
|
||
|
int MPI_Gather(void *sendbuf, int sendcount, MPI_Datatype sendtype,
|
||
|
void *recvbuf, int recvcount, MPI_Datatype recvtype,
|
||
|
int root, MPI_Comm comm) {
|
||
|
return MPI_SUCCESS;
|
||
|
}
|