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 6908214 commit 88ebfacCopy full SHA for 88ebfac
orte/mca/rmaps/rank_file/rmaps_rank_file.c
@@ -216,7 +216,7 @@ static int orte_rmaps_rf_map(orte_job_t *jdata)
216
/* all would be oversubscribed, so take the least loaded one */
217
k = UINT32_MAX;
218
OPAL_LIST_FOREACH(nd, &node_list, orte_node_t) {
219
- if (nd->num_procs < k) {
+ if (nd->num_procs < (orte_vpid_t)k) {
220
k = nd->num_procs;
221
node = nd;
222
}
0 commit comments