19 строки
446 B
C
19 строки
446 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_Scatterv = PMPI_Scatterv
|
||
|
#endif
|
||
|
|
||
|
int MPI_Scatterv(void *sendbuf, int *sendcounts, int *displs,
|
||
|
MPI_Datatype sendtype, void *recvbuf, int recvcount,
|
||
|
MPI_Datatype recvtype, int root, MPI_Comm comm) {
|
||
|
return MPI_SUCCESS;
|
||
|
}
|