2004-03-06 22:40:26 +00:00
|
|
|
/*
|
2005-11-05 19:57:48 +00:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2004-11-28 20:09:25 +00:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
2005-03-24 12:43:37 +00:00
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2004-11-22 01:38:40 +00:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
2004-03-06 22:40:26 +00:00
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
2004-10-22 16:06:05 +00:00
|
|
|
#include "ompi_config.h"
|
2004-11-05 07:52:30 +00:00
|
|
|
|
2004-03-06 22:40:26 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "ompi/constants.h"
|
2005-07-03 23:31:27 +00:00
|
|
|
#include "opal/util/output.h"
|
2005-07-03 16:22:16 +00:00
|
|
|
#include "opal/class/opal_list.h"
|
2006-02-12 01:33:29 +00:00
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "opal/mca/base/base.h"
|
|
|
|
#include "ompi/mca/topo/base/base.h"
|
2004-03-06 22:40:26 +00:00
|
|
|
|
|
|
|
/*
|
2004-08-02 00:24:22 +00:00
|
|
|
* The static-component.h is generated by the configure script. It contains
|
|
|
|
* statements and the definition of an array of pointers to each component's
|
|
|
|
* public mca_base_component_t struct.
|
2004-03-06 22:40:26 +00:00
|
|
|
*/
|
2005-07-04 18:24:58 +00:00
|
|
|
#include "ompi/mca/topo/base/static-components.h"
|
2004-03-06 22:40:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Global variables
|
|
|
|
*/
|
|
|
|
int mca_topo_base_output = -1;
|
2004-07-20 22:32:45 +00:00
|
|
|
int mca_topo_base_param = -1;
|
|
|
|
|
2005-07-03 16:22:16 +00:00
|
|
|
opal_list_t mca_topo_base_components_available;
|
|
|
|
opal_list_t mca_topo_base_components_opened;
|
2004-07-20 22:32:45 +00:00
|
|
|
|
2004-08-02 00:24:22 +00:00
|
|
|
mca_topo_base_component_t mca_topo_base_selected_component;
|
|
|
|
mca_topo_base_module_t mca_topo;
|
|
|
|
|
|
|
|
bool mca_topo_base_components_available_valid = false;
|
|
|
|
bool mca_topo_base_components_opened_valid = false;
|
2004-03-06 22:40:26 +00:00
|
|
|
|
2004-07-20 22:32:45 +00:00
|
|
|
|
2004-03-06 22:40:26 +00:00
|
|
|
/**
|
2004-08-02 00:24:22 +00:00
|
|
|
* Function for finding and opening either all the MCA topo components, or
|
2004-03-06 22:40:26 +00:00
|
|
|
* the one that specifically requested via a MCA parameter.
|
|
|
|
*/
|
2004-08-02 00:24:22 +00:00
|
|
|
int mca_topo_base_open(void)
|
|
|
|
{
|
2004-07-20 22:32:45 +00:00
|
|
|
/* Open the topo framework output stream */
|
2005-07-03 23:31:27 +00:00
|
|
|
mca_topo_base_output = opal_output_open(NULL);
|
2004-07-20 22:32:45 +00:00
|
|
|
|
2004-08-02 00:24:22 +00:00
|
|
|
/* Open up all available components */
|
2004-07-20 22:32:45 +00:00
|
|
|
if (OMPI_SUCCESS !=
|
2004-08-02 00:24:22 +00:00
|
|
|
mca_base_components_open("topo", mca_topo_base_output,
|
|
|
|
mca_topo_base_static_components,
|
2005-04-13 03:19:48 +00:00
|
|
|
&mca_topo_base_components_opened, true)) {
|
2004-06-07 15:33:53 +00:00
|
|
|
return OMPI_ERROR;
|
2004-03-06 22:40:26 +00:00
|
|
|
}
|
2004-07-20 22:32:45 +00:00
|
|
|
|
2004-08-02 00:24:22 +00:00
|
|
|
mca_topo_base_components_opened_valid = true;
|
2004-07-20 22:32:45 +00:00
|
|
|
|
|
|
|
/* Find the index of the "topo" param for selection */
|
|
|
|
mca_topo_base_param = mca_base_param_find("topo", "base", NULL);
|
|
|
|
|
|
|
|
/* All done */
|
2004-03-06 22:40:26 +00:00
|
|
|
|
2004-06-07 15:33:53 +00:00
|
|
|
return OMPI_SUCCESS;
|
2004-03-06 22:40:26 +00:00
|
|
|
}
|