2005-03-14 23:57:21 +03:00
|
|
|
/*
|
2005-11-05 22:57:48 +03: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.
|
2005-03-14 23:57:21 +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.
|
2013-02-28 05:35:55 +04:00
|
|
|
* Copyright (c) 2011-2013 Los Alamos National Security, LLC. All rights
|
2012-04-06 18:23:13 +04:00
|
|
|
* reserved.
|
2005-03-14 23:57:21 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "orte_config.h"
|
2008-02-28 04:57:57 +03:00
|
|
|
#include "orte/constants.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2015-03-06 06:50:44 +03:00
|
|
|
#include "orte/mca/mca.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/mca/base/base.h"
|
2012-04-06 18:23:13 +04:00
|
|
|
#include "opal/mca/event/event.h"
|
2006-09-15 01:29:51 +04:00
|
|
|
|
|
|
|
#include "orte/mca/ras/base/ras_private.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "orte/mca/ras/base/base.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
|
2008-02-28 04:57:57 +03:00
|
|
|
/* NOTE: the RAS does not require a proxy as only the
|
|
|
|
* HNP can open the framework in orte_init - non-HNP
|
|
|
|
* procs are not allowed to allocate resources
|
|
|
|
*/
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
/*
|
|
|
|
* The following file was created by configure. It contains extern
|
|
|
|
* statements and the definition of an array of pointers to each
|
|
|
|
* component's public mca_base_component_t struct.
|
|
|
|
*/
|
|
|
|
|
2005-07-04 22:24:58 +04:00
|
|
|
#include "orte/mca/ras/base/static-components.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Global variables
|
|
|
|
*/
|
|
|
|
orte_ras_base_t orte_ras_base;
|
|
|
|
|
2013-03-28 01:14:43 +04:00
|
|
|
static int orte_ras_base_close(void)
|
|
|
|
{
|
|
|
|
/* Close selected component */
|
|
|
|
if (NULL != orte_ras_base.active_module) {
|
|
|
|
orte_ras_base.active_module->finalize();
|
|
|
|
}
|
|
|
|
|
|
|
|
return mca_base_framework_components_close(&orte_ras_base_framework, NULL);
|
|
|
|
}
|
|
|
|
|
2005-03-14 23:57:21 +03:00
|
|
|
/**
|
2013-03-28 01:14:43 +04:00
|
|
|
* * Function for finding and opening either all MCA components, or the one
|
|
|
|
* * that was specifically requested via a MCA parameter.
|
|
|
|
* */
|
|
|
|
static int orte_ras_base_open(mca_base_open_flag_t flags)
|
2005-03-14 23:57:21 +03:00
|
|
|
{
|
2008-02-28 04:57:57 +03:00
|
|
|
/* set default flags */
|
|
|
|
orte_ras_base.active_module = NULL;
|
|
|
|
orte_ras_base.allocation_read = false;
|
2012-04-06 18:23:13 +04:00
|
|
|
orte_ras_base.total_slots_alloc = 0;
|
|
|
|
|
2007-04-07 22:41:16 +04:00
|
|
|
/* Open up all available components */
|
2013-03-28 01:14:43 +04:00
|
|
|
return mca_base_framework_components_open(&orte_ras_base_framework, flags);
|
2005-03-14 23:57:21 +03:00
|
|
|
}
|
2013-03-28 01:14:43 +04:00
|
|
|
|
|
|
|
MCA_BASE_FRAMEWORK_DECLARE(orte, ras, "ORTE Resource Allocation Subsystem",
|
|
|
|
NULL, orte_ras_base_open, orte_ras_base_close,
|
|
|
|
mca_ras_base_static_components, 0);
|