1
1

Check to see if slots_max is zero before limiting it (per Tim) to support oversubscription.

This commit was SVN r4998.
Этот коммит содержится в:
Ralph Castain 2005-03-23 17:43:24 +00:00
родитель 864012cef7
Коммит f88ec60379

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

@ -111,7 +111,7 @@ static int orte_rds_hostfile_parse_line(int token, ompi_list_t* existing, ompi_l
update++;
}
/* Ensure that node_slots_max >= node_slots */
if (node->node_slots_max < node->node_slots) {
if (node->node_slots_max != 0 && node->node_slots_max < node->node_slots) {
node->node_slots_max = node->node_slots;
}
break;