2004-04-21 02:37:46 +04:00
|
|
|
/*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
#include "ompi_config.h"
|
2004-04-21 02:37:46 +04:00
|
|
|
|
|
|
|
#include "op/op.h"
|
|
|
|
#include "op/op_predefined.h"
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_max_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_min_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_sum_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_prod_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_land_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_band_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_lor_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_bor_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_lxor_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_bxor_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_maxloc_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_minloc_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-07 19:33:53 +04:00
|
|
|
void ompi_mpi_op_replace_func(void *in, void *out, int *count,
|
2004-04-21 02:37:46 +04:00
|
|
|
MPI_Datatype *type)
|
|
|
|
{
|
|
|
|
/* JMS Need to fill in */
|
|
|
|
}
|
|
|
|
|