8b59de0f37
This commit was SVN r7748.
100 строки
2.6 KiB
C
100 строки
2.6 KiB
C
/*
|
|
* 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.
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
#include "orte_config.h"
|
|
#include <errno.h>
|
|
#include <unistd.h>
|
|
#include <string.h>
|
|
|
|
#include "opal/util/argv.h"
|
|
#include "orte/include/orte_constants.h"
|
|
#include "orte/mca/ras/poe/ras_poe.h"
|
|
#include "orte/mca/ras/base/base.h"
|
|
#include "orte/mca/ras/base/ras_base_node.h"
|
|
|
|
static int orte_ras_poe_allocate(orte_jobid_t jobid)
|
|
{
|
|
char *poe_node_str;
|
|
char **names;
|
|
int i, j, ret, nnode;
|
|
int *slots;
|
|
opal_list_t nodes_list;
|
|
orte_ras_node_t *node;
|
|
opal_list_item_t* item;
|
|
|
|
poe_node_str = getenv("LOADL_PROCESSOR_LIST");
|
|
if (NULL == poe_node_str) {
|
|
return ORTE_ERR_NOT_FOUND;
|
|
}
|
|
|
|
/* poe_node_str is something like "nodeA nodeA nodeB nodeB" */
|
|
|
|
names = opal_argv_copy(opal_argv_split(poe_node_str, ' '));
|
|
nnode = opal_argv_count(names);
|
|
|
|
OBJ_CONSTRUCT(&nodes_list, opal_list_t);
|
|
for (i = 0; i < nnode; i++) {
|
|
node = OBJ_NEW(orte_ras_node_t);
|
|
if (NULL == node) {
|
|
return ORTE_ERR_OUT_OF_RESOURCE;
|
|
}
|
|
node->node_name = strdup(names[i]);
|
|
node->node_arch = NULL;
|
|
node->node_state = ORTE_NODE_STATE_UP;
|
|
node->node_cellid = 0;
|
|
node->node_slots_inuse = 0;
|
|
node->node_slots_max = 0;
|
|
node->node_slots = 1;
|
|
opal_list_append(&nodes_list, &node->super);
|
|
}
|
|
ret = orte_ras_base_node_insert(&nodes_list);
|
|
ret = orte_ras_base_allocate_nodes(jobid, &nodes_list);
|
|
|
|
while (NULL != (item = opal_list_remove_first(&nodes_list))) {
|
|
OBJ_RELEASE(item);
|
|
}
|
|
OBJ_DESTRUCT(&nodes_list);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int orte_ras_poe_node_insert(opal_list_t *nodes)
|
|
{
|
|
return orte_ras_base_node_insert(nodes);
|
|
}
|
|
|
|
static int orte_ras_poe_node_query(opal_list_t *nodes)
|
|
{
|
|
return orte_ras_base_node_insert(nodes);
|
|
}
|
|
|
|
static int orte_ras_poe_deallocate(orte_jobid_t jobid)
|
|
{
|
|
return ORTE_SUCCESS;
|
|
}
|
|
|
|
static int orte_ras_poe_finalize(void)
|
|
{
|
|
return ORTE_SUCCESS;
|
|
}
|
|
|
|
orte_ras_base_module_t orte_ras_poe_module = {
|
|
orte_ras_poe_allocate,
|
|
orte_ras_poe_node_insert,
|
|
orte_ras_poe_node_query,
|
|
orte_ras_poe_deallocate,
|
|
orte_ras_poe_finalize
|
|
};
|