19 строки
386 B
C
19 строки
386 B
C
/*
|
|
* $HEADERS$
|
|
*/
|
|
#include "lam_config.h"
|
|
#include <stdio.h>
|
|
|
|
#include "mpi.h"
|
|
#include "mpi/c/bindings.h"
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
#pragma weak MPI_Unpack = PMPI_Unpack
|
|
#endif
|
|
|
|
int MPI_Unpack(void *inbuf, int insize, int *position,
|
|
void *outbuf, int outcount, MPI_Datatype datatype,
|
|
MPI_Comm comm) {
|
|
return MPI_SUCCESS;
|
|
}
|