Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions orte/mca/ras/alps/ras_alps_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,7 @@ orte_ras_alps_read_appinfo_file(opal_list_t *nodes, char *filename,
node->slots_inuse = 0;
node->slots_max = 0;
node->slots = 1;
node->state = ORTE_NODE_STATE_UP;
/* need to order these node ids so the regex generator
* can properly function
*/
Expand Down Expand Up @@ -579,6 +580,7 @@ orte_ras_alps_read_appinfo_file(opal_list_t *nodes, char *filename,
node->slots_inuse = 0;
node->slots_max = 0;
node->slots = apNodes[ix].numPEs;
node->state = ORTE_NODE_STATE_UP;
/* need to order these node ids so the regex generator
* can properly function
*/
Expand Down
1 change: 1 addition & 0 deletions orte/mca/ras/lsf/ras_lsf_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ static int allocate(orte_job_t *jdata, opal_list_t *nodes)
node->slots_inuse = 0;
node->slots_max = 0;
node->slots = 1;
node->state = ORTE_NODE_STATE_UP;
opal_list_append(nodes, &node->super);
}

Expand Down
1 change: 1 addition & 0 deletions orte/mca/ras/tm/ras_tm_module.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ static int discover(opal_list_t* nodelist, char *pbs_jobid)
node->slots_inuse = 0;
node->slots_max = 0;
node->slots = ppn;
node->state = ORTE_NODE_STATE_UP;
opal_list_append(nodelist, &node->super);
} else {

Expand Down