2005-03-14 23:57:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University.
|
|
|
|
* All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Trustees of the University of Tennessee.
|
|
|
|
* All rights reserved.
|
|
|
|
* 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$
|
|
|
|
*
|
|
|
|
* These symbols are in a file by themselves to provide nice linker
|
|
|
|
* semantics. Since linkers generally pull in symbols by object
|
|
|
|
* files, keeping these symbols as the only symbols in this file
|
|
|
|
* prevents utility programs such as "ompi_info" from having to import
|
|
|
|
* entire components just to query their version and parameters.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ompi_config.h"
|
|
|
|
|
2005-08-25 02:19:48 +04:00
|
|
|
#include "opal/mca/base/mca_base_param.h"
|
|
|
|
#include "orte/include/orte_constants.h"
|
|
|
|
#include "orte/mca/pls/pls.h"
|
|
|
|
#include "orte/mca/pls/base/base.h"
|
2005-03-14 23:57:21 +03:00
|
|
|
#include "pls_slurm.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Public string showing the pls ompi_slurm component version number
|
|
|
|
*/
|
|
|
|
const char *mca_pls_slurm_component_version_string =
|
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
|
|
|
"Open MPI slurm pls MCA component version " ORTE_VERSION;
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Local functions
|
|
|
|
*/
|
|
|
|
static int pls_slurm_open(void);
|
|
|
|
static struct orte_pls_base_module_1_0_0_t *pls_slurm_init(int *priority);
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Instantiate the public struct with all of our public information
|
|
|
|
* and pointers to our public functions in it
|
|
|
|
*/
|
|
|
|
|
2005-08-25 02:19:48 +04:00
|
|
|
orte_pls_slurm_component_t mca_pls_slurm_component = {
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
{
|
2005-08-25 02:19:48 +04:00
|
|
|
/* First, the mca_component_t struct containing meta
|
|
|
|
information about the component itself */
|
|
|
|
|
|
|
|
{
|
|
|
|
/* Indicate that we are a pls v1.0.0 component (which also
|
|
|
|
implies a specific MCA version) */
|
|
|
|
|
|
|
|
ORTE_PLS_BASE_VERSION_1_0_0,
|
|
|
|
|
|
|
|
/* Component name and version */
|
|
|
|
|
|
|
|
"slurm",
|
|
|
|
ORTE_MAJOR_VERSION,
|
|
|
|
ORTE_MINOR_VERSION,
|
|
|
|
ORTE_RELEASE_VERSION,
|
|
|
|
|
|
|
|
/* Component open and close functions */
|
|
|
|
|
|
|
|
pls_slurm_open,
|
|
|
|
NULL
|
|
|
|
},
|
|
|
|
|
|
|
|
/* Next the MCA v1.0.0 component meta data */
|
|
|
|
|
|
|
|
{
|
|
|
|
/* Whether the component is checkpointable or not */
|
|
|
|
|
|
|
|
true
|
|
|
|
},
|
|
|
|
|
|
|
|
/* Initialization / querying functions */
|
|
|
|
|
|
|
|
pls_slurm_init
|
|
|
|
}
|
2005-03-14 23:57:21 +03:00
|
|
|
|
2005-08-25 02:19:48 +04:00
|
|
|
/* Other orte_pls_slurm_component_t items -- left uninitialized
|
|
|
|
here; will be initialized in pls_slurm_open() */
|
2005-03-14 23:57:21 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static int pls_slurm_open(void)
|
|
|
|
{
|
2005-08-25 02:19:48 +04:00
|
|
|
mca_base_component_t *comp = &mca_pls_slurm_component.super.pls_version;
|
|
|
|
|
|
|
|
mca_base_param_reg_int(comp, "debug", "Enable debugging of slurm pls",
|
|
|
|
false, false, 0,
|
|
|
|
&mca_pls_slurm_component.debug);
|
|
|
|
|
|
|
|
mca_base_param_reg_int(comp, "priority", "Default selection priority",
|
|
|
|
false, false, 75,
|
|
|
|
&mca_pls_slurm_component.priority);
|
|
|
|
|
|
|
|
mca_base_param_reg_string(comp, "orted",
|
|
|
|
"Command to use to start proxy orted",
|
|
|
|
false, false, "orted",
|
|
|
|
&mca_pls_slurm_component.orted);
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static struct orte_pls_base_module_1_0_0_t *pls_slurm_init(int *priority)
|
|
|
|
{
|
2005-08-25 02:19:48 +04:00
|
|
|
/* Are we running under a SLURM job? */
|
2005-03-14 23:57:21 +03:00
|
|
|
|
|
|
|
if (NULL != getenv("SLURM_JOBID")) {
|
2005-08-25 02:19:48 +04:00
|
|
|
*priority = mca_pls_slurm_component.priority;
|
|
|
|
opal_output(orte_pls_base.pls_output,
|
|
|
|
"pls:slurm: available for selection");
|
2005-03-14 23:57:21 +03:00
|
|
|
return &orte_pls_slurm_module;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Sadly, no */
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|