2008-01-23 12:20:34 +03:00
|
|
|
/*
|
2008-05-06 22:08:45 +04:00
|
|
|
* Copyright (c) 2004-2008 The Trustees of Indiana University and Indiana
|
2008-01-23 12:20:34 +03:00
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2006 The University of Tennessee and The University
|
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
2009-01-11 05:30:00 +03:00
|
|
|
* Copyright (c) 2007 Cisco Systems, Inc. All rights reserved.
|
2008-01-23 12:20:34 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "opal_config.h"
|
|
|
|
|
|
|
|
#include "opal/constants.h"
|
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "opal/mca/base/base.h"
|
|
|
|
#include "opal/mca/base/mca_base_param.h"
|
|
|
|
#include "opal/mca/carto/carto.h"
|
|
|
|
#include "opal/mca/carto/base/base.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Globals
|
|
|
|
*/
|
|
|
|
bool opal_carto_base_selected = false;
|
2008-07-29 02:40:57 +04:00
|
|
|
const opal_carto_base_component_2_0_0_t *opal_carto_base_component = NULL;
|
2008-01-23 12:20:34 +03:00
|
|
|
const opal_carto_base_module_1_0_0_t *opal_carto_base_module = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
int opal_carto_base_select(void)
|
|
|
|
{
|
2011-07-13 07:42:20 +04:00
|
|
|
int exit_status = OPAL_SUCCESS;
|
2008-07-29 02:40:57 +04:00
|
|
|
opal_carto_base_component_2_0_0_t *best_component = NULL;
|
2008-05-06 22:08:45 +04:00
|
|
|
opal_carto_base_module_1_0_0_t *best_module = NULL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Select the best component
|
|
|
|
*/
|
2008-06-06 18:38:41 +04:00
|
|
|
if( OPAL_SUCCESS != mca_base_select("carto", opal_carto_base_output,
|
|
|
|
&opal_carto_base_components_opened,
|
|
|
|
(mca_base_module_t **) &best_module,
|
|
|
|
(mca_base_component_t **) &best_component) ) {
|
2009-05-05 07:54:58 +04:00
|
|
|
/* This will only happen if no component was selected, so
|
|
|
|
* use the default module instead
|
|
|
|
*/
|
|
|
|
opal_carto_base_module = &opal_carto_default_module;
|
|
|
|
opal_carto_base_selected = true;
|
2008-05-06 22:08:45 +04:00
|
|
|
goto cleanup;
|
2008-01-23 12:20:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Save the winner */
|
|
|
|
opal_carto_base_component = best_component;
|
2008-05-06 22:08:45 +04:00
|
|
|
opal_carto_base_module = best_module;
|
|
|
|
opal_carto_base_selected = true;
|
2008-01-23 12:20:34 +03:00
|
|
|
|
2009-05-05 07:54:58 +04:00
|
|
|
cleanup:
|
2008-01-23 12:20:34 +03:00
|
|
|
/* Initialize the winner */
|
|
|
|
if (NULL != opal_carto_base_module) {
|
2011-07-12 09:47:28 +04:00
|
|
|
exit_status = opal_carto_base_module->carto_module_init();
|
2008-01-23 12:20:34 +03:00
|
|
|
}
|
|
|
|
|
2008-05-06 22:08:45 +04:00
|
|
|
return exit_status;
|
2008-01-23 12:20:34 +03:00
|
|
|
}
|
|
|
|
|