2008-06-24 05:27:22 +04:00
|
|
|
/* -*- C -*-
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @file:
|
|
|
|
* Takes care of the component stuff for the MCA.
|
|
|
|
*/
|
|
|
|
#include "orte_config.h"
|
2008-06-26 07:48:22 +04:00
|
|
|
|
2008-06-24 05:27:22 +04:00
|
|
|
#include "opal/mca/mca.h"
|
|
|
|
#include "opal/mca/base/mca_base_param.h"
|
2008-06-26 07:48:22 +04:00
|
|
|
|
|
|
|
#include "plm_bproc.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Public string showing the plm ompi_bproc component version number
|
|
|
|
*/
|
|
|
|
const char *mca_plm_bproc_component_version_string =
|
|
|
|
"Open MPI bproc plm MCA component version " ORTE_VERSION;
|
|
|
|
|
|
|
|
static int plm_bproc_open(void);
|
|
|
|
static int plm_bproc_close(void);
|
|
|
|
static int orte_plm_bproc_component_query(mca_base_module_t **module, int *priority);
|
2008-06-24 05:27:22 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The bproc component data structure used to store all the relevent data about
|
|
|
|
* this component.
|
|
|
|
*/
|
2008-06-26 07:48:22 +04:00
|
|
|
orte_plm_bproc_component_t mca_plm_bproc_component = {
|
2008-06-24 05:27:22 +04:00
|
|
|
{
|
|
|
|
{
|
2008-07-29 02:40:57 +04:00
|
|
|
ORTE_PLM_BASE_VERSION_2_0_0,
|
2008-06-26 07:48:22 +04:00
|
|
|
"bproc", /* MCA component name */
|
|
|
|
ORTE_MAJOR_VERSION, /* MCA component major version */
|
|
|
|
ORTE_MINOR_VERSION, /* MCA component minor version */
|
|
|
|
ORTE_RELEASE_VERSION, /* MCA component release version */
|
|
|
|
|
|
|
|
/* Component open and close functions */
|
|
|
|
plm_bproc_open,
|
|
|
|
plm_bproc_close,
|
|
|
|
orte_plm_bproc_component_query
|
2008-06-24 05:27:22 +04:00
|
|
|
},
|
|
|
|
{
|
2008-06-26 07:48:22 +04:00
|
|
|
/* The component is checkpoint ready */
|
|
|
|
MCA_BASE_METADATA_PARAM_CHECKPOINT
|
|
|
|
}
|
2008-06-24 05:27:22 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2008-06-26 07:48:22 +04:00
|
|
|
* Opens the plm_bproc component, setting all the needed mca parameters and
|
2008-06-24 05:27:22 +04:00
|
|
|
* finishes setting up the component struct.
|
|
|
|
*/
|
2008-06-26 07:48:22 +04:00
|
|
|
static int plm_bproc_component_open(void) {
|
|
|
|
mca_base_component_t *c = &mca_plm_bproc_component.super.base_version;
|
2008-06-24 05:27:22 +04:00
|
|
|
|
|
|
|
/* init parameters */
|
2008-06-26 07:48:22 +04:00
|
|
|
mca_base_param_reg_string(c, "orted", "Path to where orted is installed",
|
|
|
|
false, false, "orted", &mca_plm_bproc_component.orted);
|
|
|
|
|
2008-06-24 05:27:22 +04:00
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2008-06-26 07:48:22 +04:00
|
|
|
* Closes the plm_bproc component
|
2008-06-24 05:27:22 +04:00
|
|
|
*/
|
2008-06-26 07:48:22 +04:00
|
|
|
static int plm_bproc_component_close(void) {
|
2008-06-24 05:27:22 +04:00
|
|
|
return ORTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes the module. We do not want to run unless we are the seed, bproc
|
|
|
|
* is running, and we are the master node.
|
|
|
|
*/
|
2008-06-26 07:48:22 +04:00
|
|
|
static int orte_plm_bproc_component_query(mca_base_module_t **module, int *priority)
|
|
|
|
{
|
2008-06-24 05:27:22 +04:00
|
|
|
int ret;
|
|
|
|
struct bproc_version_t version;
|
|
|
|
|
2008-06-26 07:48:22 +04:00
|
|
|
/* see if BProc is running here */
|
|
|
|
ret = bproc_version(&version);
|
|
|
|
if (ret != 0) {
|
|
|
|
*module = NULL;
|
|
|
|
return ORTE_ERR_NOT_AVAILABLE;
|
2008-06-24 05:27:22 +04:00
|
|
|
}
|
2008-06-26 07:48:22 +04:00
|
|
|
|
2008-06-24 05:27:22 +04:00
|
|
|
/* only launch from the master node */
|
|
|
|
if (bproc_currnode() != BPROC_NODE_MASTER) {
|
2008-06-26 07:48:22 +04:00
|
|
|
*module = NULL;
|
|
|
|
return ORTE_ERR_NOT_AVAILABLE;
|
2008-06-24 05:27:22 +04:00
|
|
|
}
|
|
|
|
|
2008-06-26 07:48:22 +04:00
|
|
|
*priority = 20;
|
|
|
|
*module = (mca_base_module_t *) &orte_plm_bproc_module;
|
|
|
|
return ORTE_SUCCESS;
|
2008-06-24 05:27:22 +04:00
|
|
|
}
|
|
|
|
|