2004-10-12 18:19:29 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. 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"
|
2009-02-14 05:26:12 +03:00
|
|
|
#include "opal/util/output.h"
|
2004-10-12 18:19:29 +04:00
|
|
|
|
|
|
|
#include "mpi.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "ompi/constants.h"
|
|
|
|
#include "ompi/mca/coll/coll.h"
|
|
|
|
#include "ompi/mca/coll/base/base.h"
|
2004-10-12 18:19:29 +04:00
|
|
|
#include "coll_demo.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* scatterv_intra
|
|
|
|
*
|
|
|
|
* Function: - scatterv operation
|
2005-01-30 21:44:00 +03:00
|
|
|
* Accepts: - same arguments as MPI_Scatterv()
|
2004-10-12 18:19:29 +04:00
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
|
|
|
int mca_coll_demo_scatterv_intra(void *sbuf, int *scounts,
|
|
|
|
int *disps, struct ompi_datatype_t *sdtype,
|
|
|
|
void *rbuf, int rcount,
|
|
|
|
struct ompi_datatype_t *rdtype, int root,
|
2007-08-19 07:37:49 +04:00
|
|
|
struct ompi_communicator_t *comm,
|
2008-07-29 02:40:57 +04:00
|
|
|
mca_coll_base_module_t *module)
|
2004-10-12 18:19:29 +04:00
|
|
|
{
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_demo_module_t *demo_module = (mca_coll_demo_module_t*) module;
|
2013-03-28 01:17:31 +04:00
|
|
|
opal_output_verbose(10, ompi_coll_base_framework.framework_output, "In demo scatterv_intra");
|
2007-08-19 07:37:49 +04:00
|
|
|
return demo_module->underlying.coll_scatterv(sbuf, scounts, disps,
|
|
|
|
sdtype, rbuf, rcount,
|
|
|
|
rdtype, root, comm,
|
|
|
|
demo_module->underlying.coll_scatterv_module);
|
2004-10-12 18:19:29 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* scatterv_inter
|
|
|
|
*
|
|
|
|
* Function: - scatterv operation
|
2005-01-30 21:44:00 +03:00
|
|
|
* Accepts: - same arguments as MPI_Scatterv()
|
2004-10-12 18:19:29 +04:00
|
|
|
* Returns: - MPI_SUCCESS or error code
|
|
|
|
*/
|
|
|
|
int mca_coll_demo_scatterv_inter(void *sbuf, int *scounts,
|
|
|
|
int *disps, struct ompi_datatype_t *sdtype,
|
|
|
|
void *rbuf, int rcount,
|
|
|
|
struct ompi_datatype_t *rdtype, int root,
|
2007-08-19 07:37:49 +04:00
|
|
|
struct ompi_communicator_t *comm,
|
2008-07-29 02:40:57 +04:00
|
|
|
mca_coll_base_module_t *module)
|
2004-10-12 18:19:29 +04:00
|
|
|
{
|
2007-08-19 07:37:49 +04:00
|
|
|
mca_coll_demo_module_t *demo_module = (mca_coll_demo_module_t*) module;
|
2013-03-28 01:17:31 +04:00
|
|
|
opal_output_verbose(10, ompi_coll_base_framework.framework_output, "In demo scatterv_inter");
|
2007-08-19 07:37:49 +04:00
|
|
|
return demo_module->underlying.coll_scatterv(sbuf, scounts, disps,
|
|
|
|
sdtype, rbuf, rcount,
|
|
|
|
rdtype, root, comm,
|
|
|
|
demo_module->underlying.coll_scatterv_module);
|
2004-10-12 18:19:29 +04:00
|
|
|
}
|