2004-10-12 18:19:29 +04:00
|
|
|
/*
|
2004-11-22 04:38:40 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-10-12 18:19:29 +04:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.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"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* alltoallw_intra
|
|
|
|
*
|
2005-01-30 21:44:00 +03:00
|
|
|
* Function: - MPI_Alltoallw
|
2004-10-12 18:19:29 +04:00
|
|
|
* Accepts: - same as MPI_Alltoallw()
|
|
|
|
* Returns: - MPI_SUCCESS or an MPI error code
|
|
|
|
*/
|
|
|
|
int mca_coll_demo_alltoallw_intra(void *sbuf, int *scounts, int *sdisps,
|
|
|
|
struct ompi_datatype_t **sdtypes,
|
|
|
|
void *rbuf, int *rcounts, int *rdisps,
|
|
|
|
struct ompi_datatype_t **rdtypes,
|
|
|
|
struct ompi_communicator_t *comm)
|
|
|
|
{
|
2005-01-30 21:44:00 +03:00
|
|
|
ompi_output_verbose(10, mca_coll_base_output, "In demo alltoallw_intra");
|
|
|
|
return comm->c_coll_basic_module->coll_alltoallw(sbuf, scounts, sdisps,
|
|
|
|
sdtypes, rbuf, rcounts,
|
|
|
|
rdisps, rdtypes, comm);
|
2004-10-12 18:19:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* alltoallw_inter
|
|
|
|
*
|
2005-01-30 21:44:00 +03:00
|
|
|
* Function: - MPI_Alltoallw
|
2004-10-12 18:19:29 +04:00
|
|
|
* Accepts: - same as MPI_Alltoallw()
|
|
|
|
* Returns: - MPI_SUCCESS or an MPI error code
|
|
|
|
*/
|
|
|
|
int mca_coll_demo_alltoallw_inter(void *sbuf, int *scounts, int *sdisps,
|
|
|
|
struct ompi_datatype_t **sdtypes,
|
|
|
|
void *rbuf, int *rcounts, int *rdisps,
|
|
|
|
struct ompi_datatype_t **rdtypes,
|
|
|
|
struct ompi_communicator_t *comm)
|
|
|
|
{
|
2005-01-30 21:44:00 +03:00
|
|
|
ompi_output_verbose(10, mca_coll_base_output, "In demo alltoallw_inter");
|
|
|
|
return comm->c_coll_basic_module->coll_alltoallw(sbuf, scounts, sdisps,
|
|
|
|
sdtypes, rbuf, rcounts,
|
|
|
|
rdisps, rdtypes, comm);
|
2004-10-12 18:19:29 +04:00
|
|
|
}
|