1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2011-2015 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2011-2015 INRIA. All rights reserved.
* Copyright (c) 2011-2015 Bordeaux Polytechnic Institute
* Copyright (c) 2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2016-2017 IBM Corporation. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#ifndef MCA_TOPO_UNTIY_H
#define MCA_TOPO_UNTIY_H
#include "ompi_config.h"
#include "ompi/mca/topo/topo.h"
/*
* ******************************************************************
* ******** functions which provide MCA interface compliance ********
* ******************************************************************
* These functions are:
* - mca_topo_treematch_module_open
* - mca_topo_treematch_module_close
* - mca_topo_treematch_module_query
* - mca_topo_treematch_module_finalize
* These functions are always found on the mca_topo_treematch_module
* structure. They are the "meta" functions to ensure smooth op.
* ******************************************************************
*/
BEGIN_C_DECLS
/*
* Public component instance
*/
typedef struct mca_topo_treematch_component_2_2_0_t {
mca_topo_base_component_2_2_0_t super;
int reorder_mode;
} mca_topo_treematch_component_2_2_0_t;
OMPI_DECLSPEC extern mca_topo_treematch_component_2_2_0_t
mca_topo_treematch_component;
/*
* A unique module class for the module so that we can both cache
* module-specific information on the module and have a
* module-specific constructor and destructor.
*/
typedef struct {
mca_topo_base_module_t super;
/* Modules can add their own information here */
} mca_topo_treematch_module_t;
OBJ_CLASS_DECLARATION(mca_topo_treematch_module_t);
/*
* Module functions
*/
int mca_topo_treematch_dist_graph_create(mca_topo_base_module_t* module,
ompi_communicator_t *comm_old,
int n, const int nodes[],
const int degrees[], const int targets[],
const int weights[],
struct opal_info_t *info, int reorder,
ompi_communicator_t **newcomm);
/*
* ******************************************************************
* ************ functions implemented in this module end ************
* ******************************************************************
*/
END_C_DECLS
#endif /* MCA_TOPO_EXAMPLE_H */
|