1
1

Don't need the number of nodes any more for PMI

Refs trac:3729

This commit was SVN r29064.

The following Trac tickets were found above:
  Ticket 3729 --> https://svn.open-mpi.org/trac/ompi/ticket/3729
Этот коммит содержится в:
Ralph Castain 2013-08-23 18:36:51 +00:00
родитель 6d24b34940
Коммит c9a25465da

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

@ -97,7 +97,6 @@ static int rte_init(void)
orte_node_rank_t node_rank;
char *rmluri;
opal_hwloc_locality_t locality;
char *tmp;
/* run the prolog */
if (ORTE_SUCCESS != (ret = orte_ess_base_std_prolog())) {
@ -347,21 +346,6 @@ static int rte_init(void)
orte_process_info.max_procs = orte_process_info.num_procs;
}
/* set the number of nodes - have to test as it could be
* one of multiple environments
*/
if (NULL != (tmp = getenv("SLURM_NNODES"))) {
orte_process_info.num_daemons = strtol(tmp, NULL, 10);
} else if (NULL != (tmp = getenv("PBS_NUM_NODES"))) {
orte_process_info.num_daemons = strtol(tmp, NULL, 10);
} else {
if (0 == ORTE_PROC_MY_NAME->vpid) {
orte_show_help("help-orte-runtime.txt",
"orte_init:startup:num_daemons", true);
}
orte_process_info.num_daemons = UINT_MAX;
}
/* construct the PMI RTE string */
rmluri = orte_rml.get_contact_info();