2004-01-30 00:42:40 +03:00
|
|
|
/*
|
|
|
|
* $HEADERS$
|
|
|
|
*/
|
|
|
|
#include "lam_config.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "mpi.h"
|
2004-03-17 21:45:16 +03:00
|
|
|
#include "mpi/c/bindings.h"
|
2004-04-21 03:12:34 +04:00
|
|
|
#include "op/op.h"
|
|
|
|
#include "errhandler/errhandler.h"
|
|
|
|
#include "communicator/communicator.h"
|
2004-01-30 00:42:40 +03:00
|
|
|
|
|
|
|
#if LAM_HAVE_WEAK_SYMBOLS && LAM_PROFILING_DEFINES
|
|
|
|
#pragma weak MPI_Op_f2c = PMPI_Op_f2c
|
|
|
|
#endif
|
|
|
|
|
2004-04-20 22:50:43 +04:00
|
|
|
#if LAM_PROFILING_DEFINES
|
|
|
|
#include "mpi/c/profile/defines.h"
|
|
|
|
#endif
|
|
|
|
|
2004-04-21 03:12:34 +04:00
|
|
|
MPI_Op MPI_Op_f2c(MPI_Fint op_f)
|
|
|
|
{
|
|
|
|
size_t o_index = (size_t) op_f;
|
|
|
|
|
|
|
|
/* Error checking */
|
|
|
|
|
|
|
|
if (MPI_PARAM_CHECK) {
|
|
|
|
if (0 > o_index ||
|
|
|
|
o_index >= lam_pointer_array_get_size(lam_op_f_to_c_table)) {
|
|
|
|
return MPI_OP_NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* All done */
|
|
|
|
|
|
|
|
return lam_op_f_to_c_table->addr[o_index];
|
2004-01-30 00:42:40 +03:00
|
|
|
}
|