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.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* 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"
|
2005-08-13 01:42:07 +04:00
|
|
|
#include "ompi/include/constants.h"
|
2005-07-04 03:31:27 +04:00
|
|
|
#include "opal/util/output.h"
|
2004-10-12 18:19:29 +04:00
|
|
|
#include "mca/coll/coll.h"
|
|
|
|
#include "mca/coll/base/base.h"
|
|
|
|
#include "coll_demo.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* alltoall_intra
|
|
|
|
*
|
|
|
|
* Function: - MPI_Alltoall
|
|
|
|
* Accepts: - same as MPI_Alltoall()
|
|
|
|
* Returns: - MPI_SUCCESS or an MPI error code
|
|
|
|
*/
|
|
|
|
int mca_coll_demo_alltoall_intra(void *sbuf, int scount,
|
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void *rbuf, int rcount,
|
|
|
|
struct ompi_datatype_t *rdtype,
|
|
|
|
struct ompi_communicator_t *comm)
|
|
|
|
{
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output_verbose(10, mca_coll_base_output, "In demo alltoall_intra\n");
|
2005-01-30 21:44:00 +03:00
|
|
|
return comm->c_coll_basic_module->coll_alltoall(sbuf, scount, sdtype,
|
|
|
|
rbuf, rcount, rdtype,
|
|
|
|
comm);
|
2004-10-12 18:19:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* alltoall_inter
|
|
|
|
*
|
|
|
|
* Function: - MPI_Alltoall
|
|
|
|
* Accepts: - same as MPI_Alltoall()
|
|
|
|
* Returns: - MPI_SUCCESS or an MPI error code
|
|
|
|
*/
|
|
|
|
int mca_coll_demo_alltoall_inter(void *sbuf, int scount,
|
|
|
|
struct ompi_datatype_t *sdtype,
|
|
|
|
void *rbuf, int rcount,
|
|
|
|
struct ompi_datatype_t *rdtype,
|
|
|
|
struct ompi_communicator_t *comm)
|
|
|
|
{
|
2005-07-04 03:31:27 +04:00
|
|
|
opal_output_verbose(10, mca_coll_base_output, "In demo alltoall_inter\n");
|
2005-01-30 21:44:00 +03:00
|
|
|
return comm->c_coll_basic_module->coll_alltoall(sbuf, scount, sdtype,
|
|
|
|
rbuf, rcount, rdtype,
|
|
|
|
comm);
|
2004-10-12 18:19:29 +04:00
|
|
|
}
|