42 строки
927 B
C
42 строки
927 B
C
|
/*
|
||
|
* $HEADER$
|
||
|
*/
|
||
|
|
||
|
#include "ompi_config.h"
|
||
|
#include "coll_demo.h"
|
||
|
|
||
|
#include "mpi.h"
|
||
|
#include "include/constants.h"
|
||
|
#include "util/output.h"
|
||
|
#include "mca/coll/coll.h"
|
||
|
#include "mca/coll/base/base.h"
|
||
|
#include "coll_demo.h"
|
||
|
|
||
|
|
||
|
/*
|
||
|
* barrier_intra
|
||
|
*
|
||
|
* Function: - barrier using O(N) algorithm
|
||
|
* Accepts: - same as MPI_Barrier()
|
||
|
* Returns: - MPI_SUCCESS or error code
|
||
|
*/
|
||
|
int mca_coll_demo_barrier_intra(struct ompi_communicator_t *comm)
|
||
|
{
|
||
|
ompi_output_verbose(10, mca_coll_base_output, "In demo barrier_intra");
|
||
|
return comm->c_coll_basic_module->coll_barrier(comm);
|
||
|
}
|
||
|
|
||
|
|
||
|
/*
|
||
|
* barrier_inter
|
||
|
*
|
||
|
* Function: - barrier using O(log(N)) algorithm
|
||
|
* Accepts: - same as MPI_Barrier()
|
||
|
* Returns: - MPI_SUCCESS or error code
|
||
|
*/
|
||
|
int mca_coll_demo_barrier_inter(struct ompi_communicator_t *comm)
|
||
|
{
|
||
|
ompi_output_verbose(10, mca_coll_base_output, "In demo barrier_inter");
|
||
|
return comm->c_coll_basic_module->coll_barrier(comm);
|
||
|
}
|