1
1
openmpi/src/mpi/interface/c/accumulate.c
Prabhanjan Kambadur 231b6716e5 Adding these MPI shells. Someday, someone has to actually write the
functions

This commit was SVN r491.
2004-01-20 06:12:28 +00:00

20 строки
457 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_Accumulate = PMPI_Accumulate
#endif
int MPI_Accumulate(void *origin_addr, int origin_count, MPI_Datatype origin_datatype,
int target_rank, MPI_Aint target_disp, int target_count,
MPI_Datatype target_datatype, MPI_Op op, MPI_Win win) {
return MPI_SUCCESS;
}