21 строка
456 B
C
21 строка
456 B
C
|
/*
|
||
|
* $HEADER$
|
||
|
*/
|
||
|
|
||
|
#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_Alltoallv = PMPI_Alltoallv
|
||
|
#endif
|
||
|
|
||
|
int MPI_Alltoallv(void *sendbuf, int *sendcounts, int *sdispls,
|
||
|
MPI_Datatype sendtype, void *recvbuf, int *recvcounts,
|
||
|
int *rdispls, MPI_Datatype recvtype, MPI_Comm comm) {
|
||
|
return MPI_SUCCESS;
|
||
|
}
|
||
|
|