
* piggybacking Bull functionalities * coll/adapt: Fix naming conventions and C11 atomic use This commit fixes some naming convention issues, such as function names which should follow the naming ompi_coll_adapt instead of mca_coll_adapt, reserved for component and module naming (cf. tuned collective component); It also fixes the use of _Atomic construct, which is only valid in C11. OPAL constructs have already been adapted to that use, so use opal_atomic_* types instead. * coll/adapt: Remove unused component field in module This commit removes an unneeded field referencing the component in the module of adapt, as it is already available through the mca_coll_adapt_component global variable. Signed-off-by: Marc Sergent <marc.sergent@atos.net> Co-authored-by: Lemarinier, Pierre <pierre.lemarinier@atos.net> Co-authored-by: pierrele <31764860+pierrele@users.noreply.github.com>
98 строки
2.9 KiB
C
98 строки
2.9 KiB
C
/*
|
|
* Copyright (c) 2014-2020 The University of Tennessee and The University
|
|
* of Tennessee Research Foundation. All rights
|
|
* reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
|
|
#ifndef MCA_COLL_ADAPT_EXPORT_H
|
|
#define MCA_COLL_ADAPT_EXPORT_H
|
|
|
|
#include "ompi_config.h"
|
|
|
|
#include "mpi.h"
|
|
#include "opal/mca/mca.h"
|
|
#include "opal/datatype/opal_convertor.h"
|
|
#include "ompi/mca/coll/coll.h"
|
|
#include "ompi/mca/coll/base/coll_base_topo.h"
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
typedef struct mca_coll_adapt_module_t mca_coll_adapt_module_t;
|
|
|
|
/*
|
|
* Structure to hold the adapt coll component. First it holds the
|
|
* base coll component, and then holds a bunch of
|
|
* adapt-coll-component-specific stuff (e.g., current MCA param
|
|
* values).
|
|
*/
|
|
typedef struct mca_coll_adapt_component_t {
|
|
/* Base coll component */
|
|
mca_coll_base_component_2_0_0_t super;
|
|
|
|
/* MCA parameter: Priority of this component */
|
|
int adapt_priority;
|
|
|
|
/* MCA parameter: Output verbose level */
|
|
int adapt_output;
|
|
|
|
/* MCA parameter: Maximum number of segment in context free list */
|
|
int adapt_context_free_list_max;
|
|
|
|
/* MCA parameter: Minimum number of segment in context free list */
|
|
int adapt_context_free_list_min;
|
|
|
|
/* MCA parameter: Increasement number of segment in context free list */
|
|
int adapt_context_free_list_inc;
|
|
|
|
/* Bcast MCA parameter */
|
|
int adapt_ibcast_algorithm;
|
|
size_t adapt_ibcast_segment_size;
|
|
int adapt_ibcast_max_send_requests;
|
|
int adapt_ibcast_max_recv_requests;
|
|
/* Bcast free list */
|
|
opal_free_list_t *adapt_ibcast_context_free_list;
|
|
opal_atomic_int32_t adapt_ibcast_context_free_list_enabled;
|
|
|
|
/* Reduce MCA parameter */
|
|
int adapt_ireduce_algorithm;
|
|
size_t adapt_ireduce_segment_size;
|
|
int adapt_ireduce_max_send_requests;
|
|
int adapt_ireduce_max_recv_requests;
|
|
int adapt_inbuf_free_list_min;
|
|
int adapt_inbuf_free_list_max;
|
|
int adapt_inbuf_free_list_inc;
|
|
|
|
/* Reduce free list */
|
|
opal_free_list_t *adapt_ireduce_context_free_list;
|
|
opal_atomic_int32_t adapt_ireduce_context_free_list_enabled;
|
|
|
|
} mca_coll_adapt_component_t;
|
|
|
|
/* Coll adapt module per communicator*/
|
|
struct mca_coll_adapt_module_t {
|
|
/* Base module */
|
|
mca_coll_base_module_t super;
|
|
|
|
/* Whether this module has been lazily initialized or not yet */
|
|
bool adapt_enabled;
|
|
};
|
|
OBJ_CLASS_DECLARATION(mca_coll_adapt_module_t);
|
|
|
|
/* Global component instance */
|
|
OMPI_MODULE_DECLSPEC extern mca_coll_adapt_component_t mca_coll_adapt_component;
|
|
|
|
/* ADAPT module functions */
|
|
int ompi_coll_adapt_init_query(bool enable_progress_threads, bool enable_mpi_threads);
|
|
mca_coll_base_module_t * ompi_coll_adapt_comm_query(struct ompi_communicator_t *comm, int *priority);
|
|
|
|
/* Free ADAPT quest */
|
|
int ompi_coll_adapt_request_free(ompi_request_t **request);
|
|
|
|
#endif /* MCA_COLL_ADAPT_EXPORT_H */
|