1
1

Correct the computation of the daemon vpid

cmr:v1.7

This commit was SVN r27899.
Этот коммит содержится в:
Ralph Castain 2013-01-24 18:04:53 +00:00
родитель b403ca5bd8
Коммит 4b310473a1

Просмотреть файл

@ -205,7 +205,10 @@ static int lsf_set_name(void)
}
free(tmp);
lsf_nodeid = atoi(getenv("LSF_PM_TASKID"));
ORTE_PROC_MY_NAME->vpid = vpid + lsf_nodeid;
opal_output_verbose(1, orte_ess_base_output,
"ess:lsf found LSF_PM_TASKID set to %d",
lsf_nodeid);
ORTE_PROC_MY_NAME->vpid = vpid + lsf_nodeid - 1;
/* get the non-name common environmental variables */
if (ORTE_SUCCESS != (rc = orte_ess_env_get())) {