2005-03-14 23:57:21 +03:00
|
|
|
/*
|
2007-03-17 02:11:45 +03:00
|
|
|
* Copyright (c) 2004-2007 The Trustees of Indiana University and Indiana
|
2005-11-05 22:57:48 +03:00
|
|
|
* 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.
|
2005-03-14 23:57:21 +03:00
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "orte_config.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "orte/orte_constants.h"
|
|
|
|
#include "opal/mca/base/base.h"
|
|
|
|
#include "opal/mca/base/mca_base_param.h"
|
|
|
|
#include "orte/util/proc_info.h"
|
2005-07-04 03:31:27 +04:00
|
|
|
#include "opal/util/output.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
#include "ras_bjs.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local functions
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int orte_ras_bjs_open(void);
|
|
|
|
static int orte_ras_bjs_close(void);
|
|
|
|
static orte_ras_base_module_t* orte_ras_bjs_init(int* priority);
|
|
|
|
|
|
|
|
|
|
|
|
orte_ras_bjs_component_t mca_ras_bjs_component = {
|
|
|
|
{
|
|
|
|
/* First, the mca_base_component_t struct containing meta
|
|
|
|
information about the component itself */
|
|
|
|
|
|
|
|
{
|
2006-09-15 01:29:51 +04:00
|
|
|
/* Indicate that we are a ras v1.3.0 component (which also
|
2005-03-14 23:57:21 +03:00
|
|
|
implies a specific MCA version) */
|
|
|
|
|
2006-09-15 01:29:51 +04:00
|
|
|
ORTE_RAS_BASE_VERSION_1_3_0,
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
"bjs", /* MCA component name */
|
Major simplifications to component versioning:
- After long discussions and ruminations on how we run components in
LAM/MPI, made the decision that, by default, all components included
in Open MPI will use the version number of their parent project
(i.e., OMPI or ORTE). They are certaint free to use a different
number, but this simplification makes the common cases easy:
- components are only released when the parent project is released
- it is easy (trivial?) to distinguish which version component goes
with with version of the parent project
- removed all autogen/configure code for templating the version .h
file in components
- made all ORTE components use ORTE_*_VERSION for version numbers
- made all OMPI components use OMPI_*_VERSION for version numbers
- removed all VERSION files from components
- configure now displays OPAL, ORTE, and OMPI version numbers
- ditto for ompi_info
- right now, faking it -- OPAL and ORTE and OMPI will always have the
same version number (i.e., they all come from the same top-level
VERSION file). But this paves the way for the Great Configure
Reorganization, where, among other things, each project will have
its own version number.
So all in all, we went from a boatload of version numbers to
[effectively] three. That's pretty good. :-)
This commit was SVN r6344.
2005-07-05 00:12:36 +04:00
|
|
|
ORTE_MAJOR_VERSION, /* MCA component major version */
|
|
|
|
ORTE_MINOR_VERSION, /* MCA component minor version */
|
|
|
|
ORTE_RELEASE_VERSION, /* MCA component release version */
|
2005-03-14 23:57:21 +03:00
|
|
|
orte_ras_bjs_open, /* component open */
|
|
|
|
orte_ras_bjs_close /* component close */
|
|
|
|
},
|
|
|
|
|
|
|
|
/* Next the MCA v1.0.0 component meta data */
|
|
|
|
{
|
2007-03-17 02:11:45 +03:00
|
|
|
/* The component is checkpoint ready */
|
|
|
|
MCA_BASE_METADATA_PARAM_CHECKPOINT
|
2005-03-14 23:57:21 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
orte_ras_bjs_init
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Convience functions to lookup MCA parameter values.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int orte_ras_bjs_param_register_int(
|
|
|
|
const char* param_name,
|
|
|
|
int default_value)
|
|
|
|
{
|
|
|
|
int id = mca_base_param_register_int("ras","bjs",param_name,NULL,default_value);
|
|
|
|
int param_value = default_value;
|
|
|
|
mca_base_param_lookup_int(id,¶m_value);
|
|
|
|
return param_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static char* orte_ras_bjs_param_register_string(
|
2005-06-06 17:43:20 +04:00
|
|
|
const char * a, const char *b, const char *c,
|
2005-03-14 23:57:21 +03:00
|
|
|
const char* default_value)
|
|
|
|
{
|
|
|
|
char *param_value;
|
2005-06-06 17:43:20 +04:00
|
|
|
int id = mca_base_param_register_string(a, b, c, NULL, default_value);
|
2005-03-14 23:57:21 +03:00
|
|
|
mca_base_param_lookup_string(id, ¶m_value);
|
|
|
|
return param_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* component open/close/init function
|
|
|
|
*/
|
|
|
|
static int orte_ras_bjs_open(void)
|
|
|
|
{
|
|
|
|
mca_ras_bjs_component.debug = orte_ras_bjs_param_register_int("debug",1);
|
|
|
|
mca_ras_bjs_component.priority = orte_ras_bjs_param_register_int("priority",75);
|
2005-06-06 17:43:20 +04:00
|
|
|
/* JMS To be changed post-beta to LAM's C/N command line notation */
|
|
|
|
mca_ras_bjs_component.schedule_policy =
|
|
|
|
orte_ras_bjs_param_register_string("ras", "base", "schedule_policy", "slot");
|
2005-03-14 23:57:21 +03:00
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-03-18 06:43:59 +03:00
|
|
|
static orte_ras_base_module_t *orte_ras_bjs_init(int* priority)
|
2005-03-14 23:57:21 +03:00
|
|
|
{
|
2006-09-15 01:29:51 +04:00
|
|
|
/* if we are not an HNP, then we must not be selected */
|
|
|
|
if (!orte_process_info.seed) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2005-07-14 19:40:30 +04:00
|
|
|
#if 0
|
2005-03-14 23:57:21 +03:00
|
|
|
if(getenv("NODES") == NULL) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2005-07-14 19:40:30 +04:00
|
|
|
#endif
|
2005-03-14 23:57:21 +03:00
|
|
|
*priority = mca_ras_bjs_component.priority;
|
|
|
|
return &orte_ras_bjs_module;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Close all subsystems.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static int orte_ras_bjs_close(void)
|
|
|
|
{
|
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|