
Note that this means ALL procs in the parent job are updated, even though they may not be participating in the comm_spawn. This doesn't really hurt anything - just unnecessary. Comm_spawn still has a problem when a child process shares a node with a parent, so this doesn't fix everything. It only fixes the bug of ensuring all procs know how to talk to each other. This commit was SVN r16460.
118 строки
3.2 KiB
C
118 строки
3.2 KiB
C
/*
|
|
* Copyright (c) 2007 Los Alamos National Security, LLC.
|
|
* All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*/
|
|
|
|
#include "orte_config.h"
|
|
|
|
#include "routed_tree.h"
|
|
|
|
#include "opal/util/output.h"
|
|
#include "opal/mca/base/base.h"
|
|
#include "opal/mca/base/mca_base_param.h"
|
|
#include "orte/orte_constants.h"
|
|
#include "orte/mca/routed/base/base.h"
|
|
#include "orte/mca/errmgr/errmgr.h"
|
|
#include "orte/mca/ns/ns.h"
|
|
|
|
static orte_routed_module_t* routed_tree_init(int* priority);
|
|
static bool selected=false;
|
|
|
|
/**
|
|
* component definition
|
|
*/
|
|
orte_routed_component_t mca_routed_tree_component = {
|
|
/* First, the mca_base_component_t struct containing meta
|
|
information about the component itself */
|
|
|
|
{
|
|
/* Indicate that we are a rml v1.0.0 component (which also
|
|
implies a specific MCA version) */
|
|
|
|
ORTE_ROUTED_BASE_VERSION_1_0_0,
|
|
|
|
"tree", /* MCA component name */
|
|
ORTE_MAJOR_VERSION, /* MCA component major version */
|
|
ORTE_MINOR_VERSION, /* MCA component minor version */
|
|
ORTE_RELEASE_VERSION, /* MCA component release version */
|
|
NULL,
|
|
NULL
|
|
},
|
|
|
|
/* Next the MCA v1.0.0 component meta data */
|
|
{
|
|
MCA_BASE_METADATA_PARAM_NONE
|
|
},
|
|
routed_tree_init
|
|
};
|
|
|
|
orte_routed_tree_module_t orte_routed_tree_module = {
|
|
{
|
|
orte_routed_tree_module_init,
|
|
orte_routed_tree_finalize,
|
|
orte_routed_tree_update_route,
|
|
orte_routed_tree_get_route,
|
|
orte_routed_tree_init_routes,
|
|
orte_routed_tree_warmup_routes
|
|
}
|
|
};
|
|
|
|
|
|
OBJ_CLASS_INSTANCE(orte_routed_tree_entry_t, opal_list_item_t, NULL, NULL);
|
|
|
|
static orte_routed_module_t*
|
|
routed_tree_init(int* priority)
|
|
{
|
|
*priority = 5;
|
|
|
|
return &orte_routed_tree_module.super;
|
|
}
|
|
|
|
int
|
|
orte_routed_tree_module_init(void)
|
|
{
|
|
OBJ_CONSTRUCT(&orte_routed_tree_module.peer_list, opal_list_t);
|
|
OBJ_CONSTRUCT(&orte_routed_tree_module.vpid_wildcard_list, opal_list_t);
|
|
OBJ_CONSTRUCT(&orte_routed_tree_module.jobid_wildcard_list, opal_list_t);
|
|
|
|
orte_routed_tree_module.full_wildcard_entry.target.jobid = ORTE_JOBID_WILDCARD;
|
|
orte_routed_tree_module.full_wildcard_entry.target.vpid = ORTE_VPID_WILDCARD;
|
|
|
|
orte_routed_tree_module.full_wildcard_entry.route.jobid = ORTE_JOBID_INVALID;
|
|
orte_routed_tree_module.full_wildcard_entry.route.vpid = ORTE_VPID_INVALID;
|
|
|
|
selected = true;
|
|
return ORTE_SUCCESS;
|
|
}
|
|
|
|
int
|
|
orte_routed_tree_finalize(void)
|
|
{
|
|
opal_list_item_t *item;
|
|
|
|
if (selected) {
|
|
while (NULL != (item = opal_list_remove_first(&orte_routed_tree_module.peer_list))) {
|
|
OBJ_RELEASE(item);
|
|
}
|
|
OBJ_DESTRUCT(&orte_routed_tree_module.peer_list);
|
|
|
|
while (NULL != (item = opal_list_remove_first(&orte_routed_tree_module.vpid_wildcard_list))) {
|
|
OBJ_RELEASE(item);
|
|
}
|
|
OBJ_DESTRUCT(&orte_routed_tree_module.vpid_wildcard_list);
|
|
|
|
while (NULL != (item = opal_list_remove_first(&orte_routed_tree_module.jobid_wildcard_list))) {
|
|
OBJ_RELEASE(item);
|
|
}
|
|
OBJ_DESTRUCT(&orte_routed_tree_module.jobid_wildcard_list);
|
|
}
|
|
|
|
return ORTE_SUCCESS;
|
|
}
|
|
|