
Among many other things: - Fix an imbalance bug in MPI_allgather - Accept more human readable configuration files. We can now specify the collective by name instead of a magic number, and the component we want to use also by name. - Add the capability to have optional arguments in the collective communication configuration file. Right now the capability exists for segment lengths, but is yet to be connected with the algorithms. - Redo the initialization of all HAN collectives. Cleanup the fallback collective support. - In case the module is unable to deliver the expected result, it will fallback executing the collective operation on another collective component. This change make the support for this fallback simpler to use. - Implement a fallback allowing a HAN module to remove itself as potential active collective module, and instead fallback to the next module in line. - Completely disable the HAN modules on error. From the moment an error is encountered they remove themselves from the communicator, and in case some other modules calls them simply behave as a pass-through. Communicator: provide ompi_comm_split_with_info to split and provide info at the same time Add ompi_comm_coll_preference info key to control collective component selection COLL HAN: use info keys instead of component-level variable to communicate topology level between abstraction layers - The info value is a comma-separated list of entries, which are chosen with decreasing priorities. This overrides the priority of the component, unless the component has disqualified itself. An entry prefixed with ^ starts the ignore-list. Any entry following this character will be ingnored during the collective component selection for the communicator. Example: "sm,libnbc,^han,adapt" gives sm the highest preference, followed by libnbc. The components han and adapt are ignored in the selection process. - Allocate a temporary buffer for all lower-level leaders (length 2 segments) - Fix the handling of MPI_IN_PLACE for gather and scatter. COLL HAN: Fix topology handling - HAN should not rely on node names to determine the ordering of ranks. Instead, use the node leaders as identifiers and short-cut if the node-leaders agree that ranks are consecutive. Also, error out if the rank distribution is imbalanced for now. Signed-off-by: Xi Luo <xluo12@vols.utk.edu> Signed-off-by: Joseph Schuchart <schuchart@icl.utk.edu> Signed-off-by: George Bosilca <bosilca@icl.utk.edu>
540 строки
19 KiB
C
540 строки
19 KiB
C
/*
|
|
* Copyright (c) 2018-2020 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* Copyright (c) 2020 Bull S.A.S. All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef MCA_COLL_HAN_EXPORT_H
|
|
#define MCA_COLL_HAN_EXPORT_H
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include "mpi.h"
|
|
#include "ompi/mca/mca.h"
|
|
#include "opal/util/output.h"
|
|
#include "ompi/mca/coll/base/coll_base_functions.h"
|
|
#include "coll_han_trigger.h"
|
|
#include "ompi/mca/coll/han/coll_han_dynamic.h"
|
|
|
|
/*
|
|
* Today;
|
|
* . only 2 modules available for intranode (low) level
|
|
* . only 2 modules available for internode (up) level
|
|
*/
|
|
|
|
#define COLL_HAN_LOW_MODULES 2
|
|
#define COLL_HAN_UP_MODULES 2
|
|
|
|
struct mca_coll_han_bcast_args_s {
|
|
mca_coll_task_t *cur_task;
|
|
ompi_communicator_t *up_comm;
|
|
ompi_communicator_t *low_comm;
|
|
void *buff;
|
|
ompi_datatype_t *dtype;
|
|
int seg_count;
|
|
int root_low_rank;
|
|
int root_up_rank;
|
|
int num_segments;
|
|
int cur_seg;
|
|
int w_rank;
|
|
int last_seg_count;
|
|
bool noop;
|
|
};
|
|
typedef struct mca_coll_han_bcast_args_s mca_coll_han_bcast_args_t;
|
|
|
|
struct mca_coll_han_reduce_args_s {
|
|
mca_coll_task_t *cur_task;
|
|
ompi_communicator_t *up_comm;
|
|
ompi_communicator_t *low_comm;
|
|
void *sbuf;
|
|
void *rbuf;
|
|
ompi_op_t *op;
|
|
ompi_datatype_t *dtype;
|
|
int seg_count;
|
|
int root_low_rank;
|
|
int root_up_rank;
|
|
int num_segments;
|
|
int cur_seg;
|
|
int w_rank;
|
|
int last_seg_count;
|
|
bool noop;
|
|
bool is_tmp_rbuf;
|
|
};
|
|
typedef struct mca_coll_han_reduce_args_s mca_coll_han_reduce_args_t;
|
|
|
|
struct mca_coll_han_allreduce_args_s {
|
|
mca_coll_task_t *cur_task;
|
|
ompi_communicator_t *up_comm;
|
|
ompi_communicator_t *low_comm;
|
|
ompi_request_t *req;
|
|
void *sbuf;
|
|
void *rbuf;
|
|
ompi_op_t *op;
|
|
ompi_datatype_t *dtype;
|
|
int seg_count;
|
|
int root_up_rank;
|
|
int root_low_rank;
|
|
int num_segments;
|
|
int cur_seg;
|
|
int w_rank;
|
|
int last_seg_count;
|
|
bool noop;
|
|
int *completed;
|
|
};
|
|
typedef struct mca_coll_han_allreduce_args_s mca_coll_han_allreduce_args_t;
|
|
|
|
struct mca_coll_han_scatter_args_s {
|
|
mca_coll_task_t *cur_task;
|
|
ompi_communicator_t *up_comm;
|
|
ompi_communicator_t *low_comm;
|
|
ompi_request_t *req;
|
|
void *sbuf;
|
|
void *sbuf_inter_free;
|
|
void *sbuf_reorder_free;
|
|
void *rbuf;
|
|
ompi_datatype_t *sdtype;
|
|
ompi_datatype_t *rdtype;
|
|
int scount;
|
|
int rcount;
|
|
int root;
|
|
int root_up_rank;
|
|
int root_low_rank;
|
|
int w_rank;
|
|
bool noop;
|
|
};
|
|
typedef struct mca_coll_han_scatter_args_s mca_coll_han_scatter_args_t;
|
|
|
|
struct mca_coll_han_gather_args_s {
|
|
mca_coll_task_t *cur_task;
|
|
ompi_communicator_t *up_comm;
|
|
ompi_communicator_t *low_comm;
|
|
ompi_request_t *req;
|
|
void *sbuf;
|
|
void *sbuf_inter_free;
|
|
void *rbuf;
|
|
ompi_datatype_t *sdtype;
|
|
ompi_datatype_t *rdtype;
|
|
int scount;
|
|
int rcount;
|
|
int root;
|
|
int root_up_rank;
|
|
int root_low_rank;
|
|
int w_rank;
|
|
bool noop;
|
|
bool is_mapbycore;
|
|
};
|
|
typedef struct mca_coll_han_gather_args_s mca_coll_han_gather_args_t;
|
|
|
|
struct mca_coll_han_allgather_s {
|
|
mca_coll_task_t *cur_task;
|
|
ompi_communicator_t *up_comm;
|
|
ompi_communicator_t *low_comm;
|
|
ompi_request_t *req;
|
|
void *sbuf;
|
|
void *sbuf_inter_free;
|
|
void *rbuf;
|
|
ompi_datatype_t *sdtype;
|
|
ompi_datatype_t *rdtype;
|
|
int scount;
|
|
int rcount;
|
|
int root_low_rank;
|
|
int w_rank;
|
|
bool noop;
|
|
bool is_mapbycore;
|
|
int *topo;
|
|
};
|
|
typedef struct mca_coll_han_allgather_s mca_coll_han_allgather_t;
|
|
|
|
/**
|
|
* Structure to hold the han coll component. First it holds the
|
|
* base coll component, and then holds a bunch of
|
|
* han-coll-component-specific stuff (e.g., current MCA param
|
|
* values).
|
|
*/
|
|
typedef struct mca_coll_han_component_t {
|
|
/** Base coll component */
|
|
mca_coll_base_component_2_0_0_t super;
|
|
|
|
/** MCA parameter: Priority of this component */
|
|
int han_priority;
|
|
/* whether output the log message */
|
|
int han_output;
|
|
/* segment size for bcast */
|
|
uint32_t han_bcast_segsize;
|
|
/* up level module for bcast */
|
|
uint32_t han_bcast_up_module;
|
|
/* low level module for bcast */
|
|
uint32_t han_bcast_low_module;
|
|
/* segment size for reduce */
|
|
uint32_t han_reduce_segsize;
|
|
/* up level module for reduce */
|
|
uint32_t han_reduce_up_module;
|
|
/* low level module for reduce */
|
|
uint32_t han_reduce_low_module;
|
|
/* segment size for allreduce */
|
|
uint32_t han_allreduce_segsize;
|
|
/* up level module for allreduce */
|
|
uint32_t han_allreduce_up_module;
|
|
/* low level module for allreduce */
|
|
uint32_t han_allreduce_low_module;
|
|
/* up level module for allgather */
|
|
uint32_t han_allgather_up_module;
|
|
/* low level module for allgather */
|
|
uint32_t han_allgather_low_module;
|
|
/* up level module for gather */
|
|
uint32_t han_gather_up_module;
|
|
/* low level module for gather */
|
|
uint32_t han_gather_low_module;
|
|
/* up level module for scatter */
|
|
uint32_t han_scatter_up_module;
|
|
/* low level module for scatter */
|
|
uint32_t han_scatter_low_module;
|
|
/* whether we need reproducible results
|
|
* (but disables topological optimisations)
|
|
*/
|
|
uint32_t han_reproducible;
|
|
bool use_simple_algorithm[COLLCOUNT];
|
|
|
|
/* Dynamic configuration rules */
|
|
bool use_dynamic_file_rules;
|
|
bool dump_dynamic_rules;
|
|
char* dynamic_rules_filename;
|
|
/* Dynamic rules from file */
|
|
mca_coll_han_dynamic_rules_t dynamic_rules;
|
|
/* Dynamic rules from mca parameter */
|
|
COMPONENT_T mca_rules[COLLCOUNT][NB_TOPO_LVL];
|
|
|
|
/* Define maximum dynamic errors printed by rank 0 with a 0 verbosity level */
|
|
int max_dynamic_errors;
|
|
} mca_coll_han_component_t;
|
|
|
|
typedef void (*previous_dummy_fn_t) (void);
|
|
|
|
/*
|
|
* Structure used to store what is necessary for the collective operations
|
|
* routines in case of fallback.
|
|
*/
|
|
typedef struct mca_coll_han_single_collective_fallback_s {
|
|
union {
|
|
mca_coll_base_module_allgather_fn_t allgather;
|
|
mca_coll_base_module_allgatherv_fn_t allgatherv;
|
|
mca_coll_base_module_allreduce_fn_t allreduce;
|
|
mca_coll_base_module_bcast_fn_t bcast;
|
|
mca_coll_base_module_gather_fn_t gather;
|
|
mca_coll_base_module_reduce_fn_t reduce;
|
|
mca_coll_base_module_scatter_fn_t scatter;
|
|
previous_dummy_fn_t dummy;
|
|
};
|
|
mca_coll_base_module_t* module;
|
|
} mca_coll_han_single_collective_fallback_t;
|
|
|
|
/*
|
|
* The structure containing a replacement for all collective supported
|
|
* by HAN. This structure is used as a fallback during subcommunicator
|
|
* creation.
|
|
*/
|
|
typedef struct mca_coll_han_collectives_fallback_s {
|
|
mca_coll_han_single_collective_fallback_t allgather;
|
|
mca_coll_han_single_collective_fallback_t allgatherv;
|
|
mca_coll_han_single_collective_fallback_t allreduce;
|
|
mca_coll_han_single_collective_fallback_t bcast;
|
|
mca_coll_han_single_collective_fallback_t reduce;
|
|
mca_coll_han_single_collective_fallback_t gather;
|
|
mca_coll_han_single_collective_fallback_t scatter;
|
|
} mca_coll_han_collectives_fallback_t;
|
|
|
|
/** Coll han module */
|
|
typedef struct mca_coll_han_module_t {
|
|
/** Base module */
|
|
mca_coll_base_module_t super;
|
|
|
|
/* Whether this module has been lazily initialized or not yet */
|
|
bool enabled;
|
|
|
|
struct ompi_communicator_t **cached_low_comms;
|
|
struct ompi_communicator_t **cached_up_comms;
|
|
int *cached_vranks;
|
|
int *cached_topo;
|
|
bool is_mapbycore;
|
|
bool are_ppn_imbalanced;
|
|
|
|
/* To be able to fallback when the cases are not supported */
|
|
struct mca_coll_han_collectives_fallback_s fallback;
|
|
|
|
/* To be able to fallback on reproducible algorithm */
|
|
mca_coll_base_module_reduce_fn_t reproducible_reduce;
|
|
mca_coll_base_module_t *reproducible_reduce_module;
|
|
mca_coll_base_module_allreduce_fn_t reproducible_allreduce;
|
|
mca_coll_base_module_t *reproducible_allreduce_module;
|
|
|
|
/* Topological level of this communicator */
|
|
TOPO_LVL_T topologic_level;
|
|
|
|
/* Collective module storage for module choice */
|
|
mca_coll_han_collective_modules_storage_t modules_storage;
|
|
bool storage_initialized;
|
|
|
|
/*
|
|
* Number of dynamic errors encountered
|
|
* The first mca_coll_han_component.max_dynamic_errors
|
|
* of rank 0 are printed with verbosity = 0
|
|
*/
|
|
int dynamic_errors;
|
|
|
|
/* Sub-communicator */
|
|
struct ompi_communicator_t *sub_comm[NB_TOPO_LVL];
|
|
} mca_coll_han_module_t;
|
|
OBJ_CLASS_DECLARATION(mca_coll_han_module_t);
|
|
|
|
/*
|
|
* Some defines to stick to the naming used in the other components in terms of
|
|
* fallback routines
|
|
*/
|
|
#define previous_allgather fallback.allgather.allgather
|
|
#define previous_allgather_module fallback.allgather.module
|
|
|
|
#define previous_allgatherv fallback.allgatherv.allgatherv
|
|
#define previous_allgatherv_module fallback.allgatherv.module
|
|
|
|
#define previous_allreduce fallback.allreduce.allreduce
|
|
#define previous_allreduce_module fallback.allreduce.module
|
|
|
|
#define previous_bcast fallback.bcast.bcast
|
|
#define previous_bcast_module fallback.bcast.module
|
|
|
|
#define previous_reduce fallback.reduce.reduce
|
|
#define previous_reduce_module fallback.reduce.module
|
|
|
|
#define previous_gather fallback.gather.gather
|
|
#define previous_gather_module fallback.gather.module
|
|
|
|
#define previous_scatter fallback.scatter.scatter
|
|
#define previous_scatter_module fallback.scatter.module
|
|
|
|
|
|
/* macro to correctly load a fallback collective module */
|
|
#define HAN_LOAD_FALLBACK_COLLECTIVE(HANM, COMM, COLL) \
|
|
do { \
|
|
if ( ((COMM)->c_coll->coll_ ## COLL ## _module) == (mca_coll_base_module_t*)(HANM) ) { \
|
|
(COMM)->c_coll->coll_ ## COLL = (HANM)->fallback.COLL.COLL; \
|
|
mca_coll_base_module_t *coll_module = (COMM)->c_coll->coll_ ## COLL ## _module; \
|
|
(COMM)->c_coll->coll_ ## COLL ## _module = (HANM)->fallback.COLL.module; \
|
|
OBJ_RETAIN((COMM)->c_coll->coll_ ## COLL ## _module); \
|
|
OBJ_RELEASE(coll_module); \
|
|
} \
|
|
} while(0)
|
|
|
|
/* macro to correctly load /all/ fallback collectives */
|
|
#define HAN_LOAD_FALLBACK_COLLECTIVES(HANM, COMM) \
|
|
do { \
|
|
HAN_LOAD_FALLBACK_COLLECTIVE(HANM, COMM, bcast); \
|
|
HAN_LOAD_FALLBACK_COLLECTIVE(HANM, COMM, scatter); \
|
|
HAN_LOAD_FALLBACK_COLLECTIVE(HANM, COMM, gather); \
|
|
HAN_LOAD_FALLBACK_COLLECTIVE(HANM, COMM, reduce); \
|
|
HAN_LOAD_FALLBACK_COLLECTIVE(HANM, COMM, allreduce); \
|
|
HAN_LOAD_FALLBACK_COLLECTIVE(HANM, COMM, allgather); \
|
|
HAN_LOAD_FALLBACK_COLLECTIVE(HANM, COMM, allgatherv); \
|
|
han_module->enabled = false; /* entire module set to pass-through from now on */ \
|
|
} while(0)
|
|
|
|
|
|
/**
|
|
* Global component instance
|
|
*/
|
|
OMPI_MODULE_DECLSPEC extern mca_coll_han_component_t mca_coll_han_component;
|
|
|
|
/*
|
|
* coll module functions
|
|
*/
|
|
int mca_coll_han_init_query(bool enable_progress_threads, bool enable_mpi_threads);
|
|
|
|
mca_coll_base_module_t *mca_coll_han_comm_query(struct ompi_communicator_t *comm, int *priority);
|
|
|
|
int han_request_free(ompi_request_t ** request);
|
|
|
|
/* Subcommunicator creation */
|
|
int mca_coll_han_comm_create(struct ompi_communicator_t *comm, mca_coll_han_module_t * han_module);
|
|
int mca_coll_han_comm_create_new(struct ompi_communicator_t *comm, mca_coll_han_module_t *han_module);
|
|
|
|
/**
|
|
* Gather topology information
|
|
*
|
|
* Returns a pointer to the (potentially already cached) topology.
|
|
* NOTE: if the rank distribution is imbalanced, no effort will be made to gather
|
|
* the topology at all ranks and instead NULL is returned and han_module->is_mapbycore
|
|
* is set to false.
|
|
* If HAN ever learns to deal with imbalanced topologies, this needs fixing!
|
|
*/
|
|
int *mca_coll_han_topo_init(struct ompi_communicator_t *comm, mca_coll_han_module_t * han_module,
|
|
int num_topo_level);
|
|
|
|
/* Utils */
|
|
static inline void
|
|
mca_coll_han_get_ranks(int *vranks, int root, int low_size,
|
|
int *root_low_rank, int *root_up_rank)
|
|
{
|
|
*root_up_rank = vranks[root] / low_size;
|
|
*root_low_rank = vranks[root] % low_size;
|
|
}
|
|
|
|
const char* mca_coll_han_topo_lvl_to_str(TOPO_LVL_T topo_lvl);
|
|
|
|
/** Dynamic component choice */
|
|
/*
|
|
* Get all the collective modules initialized on this communicator
|
|
* This function must be call at the start of every selector implementation
|
|
*/
|
|
int
|
|
mca_coll_han_get_all_coll_modules(struct ompi_communicator_t *comm,
|
|
mca_coll_han_module_t *han_module);
|
|
|
|
int
|
|
mca_coll_han_allgather_intra_dynamic(ALLGATHER_BASE_ARGS,
|
|
mca_coll_base_module_t *module);
|
|
int
|
|
mca_coll_han_allgatherv_intra_dynamic(ALLGATHERV_BASE_ARGS,
|
|
mca_coll_base_module_t *module);
|
|
int
|
|
mca_coll_han_allreduce_intra_dynamic(ALLREDUCE_BASE_ARGS,
|
|
mca_coll_base_module_t *module);
|
|
int
|
|
mca_coll_han_bcast_intra_dynamic(BCAST_BASE_ARGS,
|
|
mca_coll_base_module_t *module);
|
|
int
|
|
mca_coll_han_gather_intra_dynamic(GATHER_BASE_ARGS,
|
|
mca_coll_base_module_t *module);
|
|
int
|
|
mca_coll_han_reduce_intra_dynamic(REDUCE_BASE_ARGS,
|
|
mca_coll_base_module_t *module);
|
|
int
|
|
mca_coll_han_scatter_intra_dynamic(SCATTER_BASE_ARGS,
|
|
mca_coll_base_module_t *module);
|
|
|
|
/* Bcast */
|
|
int mca_coll_han_bcast_intra_simple(void *buff,
|
|
int count,
|
|
struct ompi_datatype_t *dtype,
|
|
int root,
|
|
struct ompi_communicator_t *comm,
|
|
mca_coll_base_module_t *module);
|
|
int mca_coll_han_bcast_intra(void *buff, int count, struct ompi_datatype_t *dtype, int root,
|
|
struct ompi_communicator_t *comm, mca_coll_base_module_t * module);
|
|
|
|
/* Reduce */
|
|
int
|
|
mca_coll_han_reduce_intra_simple(const void *sbuf,
|
|
void* rbuf,
|
|
int count,
|
|
struct ompi_datatype_t *dtype,
|
|
ompi_op_t *op,
|
|
int root,
|
|
struct ompi_communicator_t *comm,
|
|
mca_coll_base_module_t *module);
|
|
int
|
|
mca_coll_han_reduce_reproducible_decision(struct ompi_communicator_t *comm,
|
|
mca_coll_base_module_t *module);
|
|
int
|
|
mca_coll_han_reduce_reproducible(const void *sbuf,
|
|
void *rbuf,
|
|
int count,
|
|
struct ompi_datatype_t *dtype,
|
|
struct ompi_op_t *op,
|
|
int root,
|
|
struct ompi_communicator_t *comm,
|
|
mca_coll_base_module_t *module);
|
|
|
|
int mca_coll_han_reduce_intra(const void *sbuf,
|
|
void *rbuf,
|
|
int count,
|
|
struct ompi_datatype_t *dtype,
|
|
ompi_op_t* op,
|
|
int root,
|
|
struct ompi_communicator_t *comm,
|
|
mca_coll_base_module_t * module);
|
|
|
|
/* Allreduce */
|
|
int
|
|
mca_coll_han_allreduce_intra_simple(const void *sbuf,
|
|
void *rbuf,
|
|
int count,
|
|
struct ompi_datatype_t *dtype,
|
|
struct ompi_op_t *op,
|
|
struct ompi_communicator_t *comm,
|
|
mca_coll_base_module_t *module);
|
|
int
|
|
mca_coll_han_allreduce_reproducible_decision(struct ompi_communicator_t *comm,
|
|
mca_coll_base_module_t *module);
|
|
int
|
|
mca_coll_han_allreduce_reproducible(const void *sbuf,
|
|
void *rbuf,
|
|
int count,
|
|
struct ompi_datatype_t *dtype,
|
|
struct ompi_op_t *op,
|
|
struct ompi_communicator_t *comm,
|
|
mca_coll_base_module_t *module);
|
|
|
|
int mca_coll_han_allreduce_intra(const void *sbuf,
|
|
void *rbuf,
|
|
int count,
|
|
struct ompi_datatype_t *dtype,
|
|
struct ompi_op_t *op,
|
|
struct ompi_communicator_t *comm, mca_coll_base_module_t * module);
|
|
|
|
/* Scatter */
|
|
int
|
|
mca_coll_han_scatter_intra(const void *sbuf, int scount,
|
|
struct ompi_datatype_t *sdtype,
|
|
void *rbuf, int rcount,
|
|
struct ompi_datatype_t *rdtype,
|
|
int root,
|
|
struct ompi_communicator_t *comm, mca_coll_base_module_t * module);
|
|
|
|
/* Gather */
|
|
int
|
|
mca_coll_han_gather_intra(const void *sbuf, int scount,
|
|
struct ompi_datatype_t *sdtype,
|
|
void *rbuf, int rcount,
|
|
struct ompi_datatype_t *rdtype,
|
|
int root,
|
|
struct ompi_communicator_t *comm, mca_coll_base_module_t * module);
|
|
int
|
|
mca_coll_han_gather_intra_simple(const void *sbuf, int scount,
|
|
struct ompi_datatype_t *sdtype,
|
|
void *rbuf, int rcount,
|
|
struct ompi_datatype_t *rdtype,
|
|
int root,
|
|
struct ompi_communicator_t *comm,
|
|
mca_coll_base_module_t *module);
|
|
/* reordering after gather, for unordered ranks */
|
|
void
|
|
ompi_coll_han_reorder_gather(const void *sbuf,
|
|
void *rbuf, int rcount,
|
|
struct ompi_datatype_t *rdtype,
|
|
struct ompi_communicator_t *comm,
|
|
int * topo);
|
|
|
|
|
|
|
|
/* Allgather */
|
|
int
|
|
mca_coll_han_allgather_intra(const void *sbuf, int scount,
|
|
struct ompi_datatype_t *sdtype,
|
|
void *rbuf, int rcount,
|
|
struct ompi_datatype_t *rdtype,
|
|
struct ompi_communicator_t *comm, mca_coll_base_module_t * module);
|
|
int
|
|
mca_coll_han_allgather_intra_simple(const void *sbuf, int scount,
|
|
struct ompi_datatype_t *sdtype,
|
|
void* rbuf, int rcount,
|
|
struct ompi_datatype_t *rdtype,
|
|
struct ompi_communicator_t *comm,
|
|
mca_coll_base_module_t *module);
|
|
|
|
#endif /* MCA_COLL_HAN_EXPORT_H */
|