
a hierarchical, architecture-aware collective communication module. Add Reduce and remove up_seg_size and low_seg_size in Bcast Increase HAN's priority Signed-off-by: Xi Luo <xluo12@vols.utk.edu> Signed-off-by: George Bosilca <bosilca@icl.utk.edu>
47 строки
1.2 KiB
C
47 строки
1.2 KiB
C
/*
|
|
* Copyright (c) 2018-2020 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#ifndef MCA_COLL_HAN_TRIGGER_EXPORT_H
|
|
#define MCA_COLL_HAN_TRIGGER_EXPORT_H
|
|
|
|
#include "ompi_config.h"
|
|
#include "mpi.h"
|
|
#include "ompi/mca/mca.h"
|
|
#include "ompi/mca/coll/coll.h"
|
|
#include "ompi/communicator/communicator.h"
|
|
#include "ompi/win/win.h"
|
|
#include "ompi/mca/coll/base/coll_base_functions.h"
|
|
#include "opal/util/info.h"
|
|
#include "ompi/op/op.h"
|
|
#include "opal/runtime/opal_progress.h"
|
|
#include "ompi/mca/pml/pml.h"
|
|
#include "ompi/mca/coll/base/coll_tags.h"
|
|
|
|
typedef int (*task_func_ptr) (void *);
|
|
|
|
struct mca_coll_task_s {
|
|
opal_object_t super;
|
|
task_func_ptr func_ptr;
|
|
void *func_argu;
|
|
};
|
|
|
|
typedef struct mca_coll_task_s mca_coll_task_t;
|
|
|
|
OBJ_CLASS_DECLARATION(mca_coll_task_t);
|
|
|
|
/* Init task */
|
|
int init_task(mca_coll_task_t * t, task_func_ptr func_ptr, void *func_argu);
|
|
|
|
/* Issue the task */
|
|
int issue_task(mca_coll_task_t * t);
|
|
|
|
#endif /* MCA_COLL_HAN_TRIGGER_EXPORT_H */
|