
* 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>
26 строки
629 B
C
26 строки
629 B
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$
|
|
*/
|
|
|
|
#include "opal/class/opal_list.h"
|
|
#include "coll_adapt_inbuf.h"
|
|
|
|
struct ompi_coll_adapt_item_s {
|
|
opal_list_item_t super;
|
|
/* Fragment id */
|
|
int id;
|
|
/* The number of children which have received the current segment from */
|
|
int count;
|
|
};
|
|
|
|
typedef struct ompi_coll_adapt_item_s ompi_coll_adapt_item_t;
|
|
|
|
OBJ_CLASS_DECLARATION(ompi_coll_adapt_item_t);
|