2013-03-28 01:10:18 +04:00
|
|
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
|
2004-01-18 02:07:40 +03:00
|
|
|
/*
|
2008-05-06 22:08:45 +04:00
|
|
|
* Copyright (c) 2004-2008 The Trustees of Indiana University and Indiana
|
2005-11-05 22:57:48 +03:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2007-07-13 18:54:01 +04:00
|
|
|
* Copyright (c) 2004-2007 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2009-01-22 01:27:05 +03:00
|
|
|
* Copyright (c) 2009 Cisco Systems, Inc. All rights reserved.
|
2013-03-28 01:10:18 +04:00
|
|
|
* Copyright (c) 2013 Los Alamos National Security, LLC. All rights
|
|
|
|
* reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-01-18 02:07:40 +03:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-03-17 22:03:26 +03:00
|
|
|
#ifndef MCA_BASE_H
|
|
|
|
#define MCA_BASE_H
|
2004-01-18 02:07:40 +03:00
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal_config.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2005-07-03 20:06:07 +04:00
|
|
|
#include "opal/class/opal_object.h"
|
2009-03-18 00:34:30 +03:00
|
|
|
#include "opal/class/opal_list.h"
|
2004-03-17 22:27:02 +03:00
|
|
|
|
2004-01-18 02:07:40 +03:00
|
|
|
/*
|
|
|
|
* These units are large enough to warrant their own .h files
|
|
|
|
*/
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/mca/mca.h"
|
2013-03-28 01:09:41 +04:00
|
|
|
#include "opal/mca/base/mca_base_var.h"
|
2013-03-28 01:10:18 +04:00
|
|
|
#include "opal/mca/base/mca_base_framework.h"
|
2009-03-18 00:34:30 +03:00
|
|
|
#include "opal/util/cmd_line.h"
|
2004-01-18 02:07:40 +03:00
|
|
|
|
2007-07-13 18:54:01 +04:00
|
|
|
BEGIN_C_DECLS
|
2004-01-18 02:07:40 +03:00
|
|
|
|
2004-01-22 03:37:58 +03:00
|
|
|
/*
|
2004-08-02 04:24:22 +04:00
|
|
|
* Structure for making plain lists of components
|
2004-01-22 03:37:58 +03:00
|
|
|
*/
|
2004-08-02 04:24:22 +04:00
|
|
|
struct mca_base_component_list_item_t {
|
2007-07-13 18:54:01 +04:00
|
|
|
opal_list_item_t super;
|
|
|
|
const mca_base_component_t *cli_component;
|
2004-01-22 03:37:58 +03:00
|
|
|
};
|
2004-08-02 04:24:22 +04:00
|
|
|
typedef struct mca_base_component_list_item_t mca_base_component_list_item_t;
|
2006-08-23 04:29:35 +04:00
|
|
|
OPAL_DECLSPEC OBJ_CLASS_DECLARATION(mca_base_component_list_item_t);
|
2004-01-22 03:37:58 +03:00
|
|
|
|
2004-03-17 22:27:02 +03:00
|
|
|
/*
|
2004-06-29 04:02:25 +04:00
|
|
|
* Structure for making priority lists of components
|
2004-03-17 22:27:02 +03:00
|
|
|
*/
|
2004-06-29 04:02:25 +04:00
|
|
|
struct mca_base_component_priority_list_item_t {
|
2007-07-13 18:54:01 +04:00
|
|
|
mca_base_component_list_item_t super;
|
|
|
|
int cpli_priority;
|
2004-06-29 04:02:25 +04:00
|
|
|
};
|
|
|
|
typedef struct mca_base_component_priority_list_item_t
|
2007-07-13 18:54:01 +04:00
|
|
|
mca_base_component_priority_list_item_t;
|
2004-06-29 04:02:25 +04:00
|
|
|
|
2006-08-23 04:29:35 +04:00
|
|
|
OPAL_DECLSPEC OBJ_CLASS_DECLARATION(mca_base_component_priority_list_item_t);
|
2004-03-17 22:27:02 +03:00
|
|
|
|
2004-01-18 02:07:40 +03:00
|
|
|
/*
|
|
|
|
* Public variables
|
|
|
|
*/
|
2013-03-28 01:09:41 +04:00
|
|
|
OPAL_DECLSPEC extern char *mca_base_component_path;
|
|
|
|
OPAL_DECLSPEC extern bool mca_base_component_show_load_errors;
|
|
|
|
OPAL_DECLSPEC extern bool mca_base_component_disable_dlopen;
|
2013-03-28 01:10:18 +04:00
|
|
|
OPAL_DECLSPEC extern char *mca_base_system_default_path;
|
|
|
|
OPAL_DECLSPEC extern char *mca_base_user_default_path;
|
2004-01-18 02:07:40 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Public functions
|
|
|
|
*/
|
|
|
|
|
2007-07-13 18:54:01 +04:00
|
|
|
/**
|
|
|
|
* First function called in the MCA.
|
|
|
|
*
|
|
|
|
* @return OPAL_SUCCESS Upon success
|
|
|
|
* @return OPAL_ERROR Upon failure
|
|
|
|
*
|
|
|
|
* This function starts up the entire MCA. It initializes a bunch
|
|
|
|
* of built-in MCA parameters, and initialized the MCA component
|
|
|
|
* repository.
|
|
|
|
*
|
|
|
|
* It must be the first MCA function invoked. It is normally
|
George did the work and deserves all the credit for it. Ralph did the merge, and deserves whatever blame results from errors in it :-)
WHAT: Open our low-level communication infrastructure by moving all necessary components (btl/rcache/allocator/mpool) down in OPAL
All the components required for inter-process communications are currently deeply integrated in the OMPI layer. Several groups/institutions have express interest in having a more generic communication infrastructure, without all the OMPI layer dependencies. This communication layer should be made available at a different software level, available to all layers in the Open MPI software stack. As an example, our ORTE layer could replace the current OOB and instead use the BTL directly, gaining access to more reactive network interfaces than TCP. Similarly, external software libraries could take advantage of our highly optimized AM (active message) communication layer for their own purpose. UTK with support from Sandia, developped a version of Open MPI where the entire communication infrastucture has been moved down to OPAL (btl/rcache/allocator/mpool). Most of the moved components have been updated to match the new schema, with few exceptions (mainly BTLs where I have no way of compiling/testing them). Thus, the completion of this RFC is tied to being able to completing this move for all BTLs. For this we need help from the rest of the Open MPI community, especially those supporting some of the BTLs. A non-exhaustive list of BTLs that qualify here is: mx, portals4, scif, udapl, ugni, usnic.
This commit was SVN r32317.
2014-07-26 04:47:28 +04:00
|
|
|
* invoked during the initialization stage and specifically
|
|
|
|
* invoked in the special case of the *_info command.
|
2007-07-13 18:54:01 +04:00
|
|
|
*/
|
|
|
|
OPAL_DECLSPEC int mca_base_open(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Last function called in the MCA
|
|
|
|
*
|
|
|
|
* @return OPAL_SUCCESS Upon success
|
|
|
|
* @return OPAL_ERROR Upon failure
|
|
|
|
*
|
|
|
|
* This function closes down the entire MCA. It clears all MCA
|
|
|
|
* parameters and closes down the MCA component respository.
|
|
|
|
*
|
|
|
|
* It must be the last MCA function invoked. It is normally invoked
|
George did the work and deserves all the credit for it. Ralph did the merge, and deserves whatever blame results from errors in it :-)
WHAT: Open our low-level communication infrastructure by moving all necessary components (btl/rcache/allocator/mpool) down in OPAL
All the components required for inter-process communications are currently deeply integrated in the OMPI layer. Several groups/institutions have express interest in having a more generic communication infrastructure, without all the OMPI layer dependencies. This communication layer should be made available at a different software level, available to all layers in the Open MPI software stack. As an example, our ORTE layer could replace the current OOB and instead use the BTL directly, gaining access to more reactive network interfaces than TCP. Similarly, external software libraries could take advantage of our highly optimized AM (active message) communication layer for their own purpose. UTK with support from Sandia, developped a version of Open MPI where the entire communication infrastucture has been moved down to OPAL (btl/rcache/allocator/mpool). Most of the moved components have been updated to match the new schema, with few exceptions (mainly BTLs where I have no way of compiling/testing them). Thus, the completion of this RFC is tied to being able to completing this move for all BTLs. For this we need help from the rest of the Open MPI community, especially those supporting some of the BTLs. A non-exhaustive list of BTLs that qualify here is: mx, portals4, scif, udapl, ugni, usnic.
This commit was SVN r32317.
2014-07-26 04:47:28 +04:00
|
|
|
* during the finalize stage.
|
2007-07-13 18:54:01 +04:00
|
|
|
*/
|
|
|
|
OPAL_DECLSPEC int mca_base_close(void);
|
|
|
|
|
2008-05-06 22:08:45 +04:00
|
|
|
/**
|
|
|
|
* A generic select function
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
OPAL_DECLSPEC int mca_base_select(const char *type_name, int output_id,
|
|
|
|
opal_list_t *components_available,
|
|
|
|
mca_base_module_t **best_module,
|
|
|
|
mca_base_component_t **best_component);
|
|
|
|
|
2009-12-17 18:12:26 +03:00
|
|
|
/**
|
|
|
|
* A function for component query functions to discover if they have
|
|
|
|
* been explicitly required to or requested to be selected.
|
|
|
|
*
|
|
|
|
* exclusive: If the specified component is the only component that is
|
|
|
|
* available for selection.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
OPAL_DECLSPEC int mca_base_is_component_required(opal_list_t *components_available,
|
|
|
|
mca_base_component_t *component,
|
|
|
|
bool exclusive,
|
|
|
|
bool *is_required);
|
|
|
|
|
2007-07-13 18:54:01 +04:00
|
|
|
/* mca_base_cmd_line.c */
|
|
|
|
|
|
|
|
OPAL_DECLSPEC int mca_base_cmd_line_setup(opal_cmd_line_t *cmd);
|
|
|
|
OPAL_DECLSPEC int mca_base_cmd_line_process_args(opal_cmd_line_t *cmd,
|
|
|
|
char ***app_env,
|
|
|
|
char ***global_env);
|
2014-09-09 00:38:46 +04:00
|
|
|
OPAL_DECLSPEC void mca_base_cmd_line_wrap_args(char **args);
|
2007-07-13 18:54:01 +04:00
|
|
|
|
|
|
|
/* mca_base_component_compare.c */
|
|
|
|
|
|
|
|
OPAL_DECLSPEC int mca_base_component_compare_priority(mca_base_component_priority_list_item_t *a,
|
|
|
|
mca_base_component_priority_list_item_t *b);
|
|
|
|
OPAL_DECLSPEC int mca_base_component_compare(const mca_base_component_t *a,
|
|
|
|
const mca_base_component_t *b);
|
|
|
|
OPAL_DECLSPEC int mca_base_component_compatible(const mca_base_component_t *a,
|
|
|
|
const mca_base_component_t *b);
|
2008-02-28 04:57:57 +03:00
|
|
|
OPAL_DECLSPEC char * mca_base_component_to_string(const mca_base_component_t *a);
|
2007-07-13 18:54:01 +04:00
|
|
|
|
|
|
|
/* mca_base_component_find.c */
|
|
|
|
|
|
|
|
OPAL_DECLSPEC int mca_base_component_find(const char *directory, const char *type,
|
|
|
|
const mca_base_component_t *static_components[],
|
2013-03-28 01:10:18 +04:00
|
|
|
const char *requested_components,
|
2007-07-13 18:54:01 +04:00
|
|
|
opal_list_t *found_components,
|
|
|
|
bool open_dso_components);
|
|
|
|
|
2013-08-28 20:03:23 +04:00
|
|
|
/**
|
|
|
|
* Parse the requested component string and return an opal_argv of the requested
|
|
|
|
* (or not requested) components.
|
|
|
|
*/
|
|
|
|
int mca_base_component_parse_requested (const char *requested, bool *include_mode,
|
|
|
|
char ***requested_component_names);
|
|
|
|
|
2013-03-28 01:10:18 +04:00
|
|
|
/**
|
|
|
|
* Filter a list of components based on a comma-delimted list of names and/or
|
|
|
|
* a set of meta-data flags.
|
|
|
|
*
|
|
|
|
* @param[in,out] components List of components to filter
|
|
|
|
* @param[in] output_id Output id to write to for error/warning/debug messages
|
|
|
|
* @param[in] filter_names Comma delimited list of components to use. Negate with ^.
|
|
|
|
* May be NULL.
|
|
|
|
* @param[in] filter_flags Metadata flags components are required to have set (CR ready)
|
|
|
|
*
|
|
|
|
* @returns OPAL_SUCCESS On success
|
|
|
|
* @returns OPAL_ERR_NOT_FOUND If some component in {filter_names} is not found in
|
|
|
|
* {components}. Does not apply to negated filters.
|
|
|
|
* @returns opal error code On other error.
|
|
|
|
*
|
|
|
|
* This function closes and releases any components that do not match the filter_name and
|
|
|
|
* filter flags.
|
|
|
|
*/
|
|
|
|
OPAL_DECLSPEC int mca_base_components_filter (const char *framework_name, opal_list_t *components, int output_id,
|
|
|
|
const char *filter_names, uint32_t filter_flags);
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-01-22 01:27:05 +03:00
|
|
|
/* Safely release some memory allocated by mca_base_component_find()
|
|
|
|
(i.e., is safe to call even if you never called
|
|
|
|
mca_base_component_find()). */
|
|
|
|
OPAL_DECLSPEC int mca_base_component_find_finalize(void);
|
|
|
|
|
2013-03-28 01:10:18 +04:00
|
|
|
/* mca_base_components_register.c */
|
|
|
|
OPAL_DECLSPEC int mca_base_framework_components_register (struct mca_base_framework_t *framework,
|
|
|
|
mca_base_register_flag_t flags);
|
|
|
|
|
2007-07-13 18:54:01 +04:00
|
|
|
/* mca_base_components_open.c */
|
2013-03-28 01:10:18 +04:00
|
|
|
OPAL_DECLSPEC int mca_base_framework_components_open (struct mca_base_framework_t *framework,
|
|
|
|
mca_base_open_flag_t flags);
|
2007-07-13 18:54:01 +04:00
|
|
|
|
|
|
|
OPAL_DECLSPEC int mca_base_components_open(const char *type_name, int output_id,
|
|
|
|
const mca_base_component_t **static_components,
|
|
|
|
opal_list_t *components_available,
|
|
|
|
bool open_dso_components);
|
|
|
|
|
|
|
|
/* mca_base_components_close.c */
|
2013-03-28 01:10:18 +04:00
|
|
|
/**
|
|
|
|
* Close and release a component.
|
|
|
|
*
|
|
|
|
* @param[in] component Component to close
|
|
|
|
* @param[in] output_id Output id for debugging output
|
|
|
|
*
|
|
|
|
* After calling this function the component may no longer be used.
|
|
|
|
*/
|
|
|
|
OPAL_DECLSPEC void mca_base_component_close (const mca_base_component_t *component, int output_id);
|
2013-03-28 01:09:41 +04:00
|
|
|
|
2013-08-10 00:16:08 +04:00
|
|
|
/**
|
|
|
|
* Release a component without closing it.
|
|
|
|
* @param[in] component Component to close
|
|
|
|
* @param[in] output_id Output id for debugging output
|
|
|
|
*
|
|
|
|
* After calling this function the component may no longer be used.
|
|
|
|
*/
|
|
|
|
void mca_base_component_unload (const mca_base_component_t *component, int output_id);
|
|
|
|
|
2007-07-13 18:54:01 +04:00
|
|
|
OPAL_DECLSPEC int mca_base_components_close(int output_id, opal_list_t *components_available,
|
|
|
|
const mca_base_component_t *skip);
|
2004-06-29 04:02:25 +04:00
|
|
|
|
2013-03-28 01:10:18 +04:00
|
|
|
OPAL_DECLSPEC int mca_base_framework_components_close (struct mca_base_framework_t *framework,
|
|
|
|
const mca_base_component_t *skip);
|
|
|
|
|
2007-07-13 18:54:01 +04:00
|
|
|
END_C_DECLS
|
2004-01-18 02:07:40 +03:00
|
|
|
|
2004-03-17 22:03:26 +03:00
|
|
|
#endif /* MCA_BASE_H */
|