Check to see if slots_max is zero before limiting it (per Tim) to support oversubscription.
This commit was SVN r4998.
Этот коммит содержится в:
родитель
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;
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user