Add some debug
This commit was SVN r25791.
Этот коммит содержится в:
родитель
1449b27e9f
Коммит
ef94e606c7
@ -511,6 +511,9 @@ int orte_rmaps_base_compute_vpids(orte_job_t *jdata,
|
||||
continue;
|
||||
}
|
||||
if (ORTE_VPID_INVALID == proc->name.vpid) {
|
||||
opal_output_verbose(5, orte_rmaps_base.rmaps_output,
|
||||
"mca:rmaps:base: assigning rank %s to node %s",
|
||||
ORTE_VPID_PRINT(vpid), node->name);
|
||||
proc->name.vpid = vpid++;
|
||||
ORTE_EPOCH_SET(proc->name.epoch,ORTE_EPOCH_INVALID);
|
||||
ORTE_EPOCH_SET(proc->name.epoch,orte_ess.proc_get_epoch(&proc->name));
|
||||
|
@ -292,6 +292,17 @@ int orte_rmaps_base_get_target_nodes(opal_list_t *allocated_nodes, orte_std_cntr
|
||||
|
||||
*total_num_slots = num_slots;
|
||||
|
||||
if (4 < opal_output_get_verbosity(orte_rmaps_base.rmaps_output)) {
|
||||
opal_output(0, "AVAILABLE NODES FOR MAPPING:");
|
||||
for (item = opal_list_get_first(allocated_nodes);
|
||||
item != opal_list_get_end(allocated_nodes);
|
||||
item = opal_list_get_next(item)) {
|
||||
node = (orte_node_t*)item;
|
||||
opal_output(0, " node: %s daemon: %s", node->name,
|
||||
(NULL == node->daemon) ? "NULL" : ORTE_VPID_PRINT(node->daemon->name.vpid));
|
||||
}
|
||||
}
|
||||
|
||||
return ORTE_SUCCESS;
|
||||
}
|
||||
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user