101 строка
1.9 KiB
C
101 строка
1.9 KiB
C
|
/*
|
||
|
* $HEADER$
|
||
|
*/
|
||
|
|
||
|
#include "lam_config.h"
|
||
|
|
||
|
#include "op/op.h"
|
||
|
#include "op/op_predefined.h"
|
||
|
|
||
|
|
||
|
void lam_mpi_op_max_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|
||
|
|
||
|
void lam_mpi_op_min_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|
||
|
|
||
|
void lam_mpi_op_sum_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|
||
|
|
||
|
void lam_mpi_op_prod_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|
||
|
|
||
|
void lam_mpi_op_land_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|
||
|
|
||
|
void lam_mpi_op_band_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|
||
|
|
||
|
void lam_mpi_op_lor_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|
||
|
|
||
|
void lam_mpi_op_bor_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|
||
|
|
||
|
void lam_mpi_op_lxor_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|
||
|
|
||
|
void lam_mpi_op_bxor_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|
||
|
|
||
|
void lam_mpi_op_maxloc_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|
||
|
|
||
|
void lam_mpi_op_minloc_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|
||
|
|
||
|
void lam_mpi_op_replace_func(void *in, void *out, int *count,
|
||
|
MPI_Datatype *type)
|
||
|
{
|
||
|
/* JMS Need to fill in */
|
||
|
}
|
||
|
|