2012-08-16 19:11:35 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2009-2012 Oak Ridge National Laboratory. All rights reserved.
|
|
|
|
* Copyright (c) 2009-2012 Mellanox Technologies. All rights reserved.
|
2013-03-27 21:17:31 +00:00
|
|
|
* Copyright (c) 2012-2013 Los Alamos National Security, Inc. All rights reserved.
|
2012-08-16 19:11:35 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MCA_SBGP_BASE_H
|
|
|
|
#define MCA_SBGP_BASE_H
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
|
|
|
#include "opal/mca/mca.h"
|
2013-03-27 21:17:31 +00:00
|
|
|
#include "opal/mca/base/mca_base_framework.h"
|
2012-08-16 19:11:35 +00:00
|
|
|
/*
|
|
|
|
* Global functions for SBGP
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* components in use */
|
|
|
|
OMPI_MODULE_DECLSPEC extern opal_list_t mca_sbgp_base_components_in_use;
|
|
|
|
OMPI_MODULE_DECLSPEC extern int mca_sbgp_base_components_in_use_inited;
|
|
|
|
OMPI_DECLSPEC extern char *ompi_sbgp_subgroups_string;
|
|
|
|
|
|
|
|
BEGIN_C_DECLS
|
|
|
|
|
2013-03-27 21:17:31 +00:00
|
|
|
/*
|
|
|
|
* MCA Framework
|
|
|
|
*/
|
|
|
|
OMPI_DECLSPEC extern mca_base_framework_t ompi_sbgp_base_framework;
|
2012-08-16 19:11:35 +00:00
|
|
|
|
2013-03-27 21:17:31 +00:00
|
|
|
/* select a component */
|
2012-08-16 19:11:35 +00:00
|
|
|
OMPI_DECLSPEC int mca_sbgp_base_init(bool, bool);
|
|
|
|
|
|
|
|
/* subgrouping component and key value */
|
|
|
|
struct sbgp_base_component_keyval_t {
|
|
|
|
mca_base_component_list_item_t component;
|
|
|
|
char *key_value;
|
|
|
|
};
|
|
|
|
typedef struct sbgp_base_component_keyval_t sbgp_base_component_keyval_t;
|
|
|
|
OBJ_CLASS_DECLARATION(sbgp_base_component_keyval_t);
|
|
|
|
|
|
|
|
END_C_DECLS
|
|
|
|
|
|
|
|
#endif /* MCA_SBGP_BASE_H */
|