We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d387725 commit f53d3c7Copy full SHA for f53d3c7
orte/mca/rmaps/rank_file/rmaps_rank_file.c
@@ -215,7 +215,7 @@ static int orte_rmaps_rf_map(orte_job_t *jdata)
215
/* all would be oversubscribed, so take the least loaded one */
216
k = UINT32_MAX;
217
OPAL_LIST_FOREACH(nd, &node_list, orte_node_t) {
218
- if (nd->num_procs < k) {
+ if (nd->num_procs < (orte_vpid_t)k) {
219
k = nd->num_procs;
220
node = nd;
221
}
0 commit comments