From 2110fb7f95c09fa2be88cdc91d91d60649614870 Mon Sep 17 00:00:00 2001 From: Ralph Castain Date: Fri, 7 Sep 2012 04:06:37 +0000 Subject: [PATCH] Add some debug This commit was SVN r27257. --- orte/mca/rmaps/round_robin/rmaps_rr_mappers.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/orte/mca/rmaps/round_robin/rmaps_rr_mappers.c b/orte/mca/rmaps/round_robin/rmaps_rr_mappers.c index e6ffe69cb4..d812a8c201 100644 --- a/orte/mca/rmaps/round_robin/rmaps_rr_mappers.c +++ b/orte/mca/rmaps/round_robin/rmaps_rr_mappers.c @@ -85,12 +85,15 @@ int orte_rmaps_rr_byslot(orte_job_t *jdata, #endif if (node->slots <= node->slots_inuse) { opal_output_verbose(2, orte_rmaps_base.rmaps_output, - "mca:rmaps:rr:slot working node %s is full - skipping", + "mca:rmaps:rr:slot node %s is full - skipping", node->name); continue; } num_procs_to_assign = node->slots - node->slots_inuse; - for (i=0; i < num_procs_to_assign && nprocs_mapped < app->num_procs; i++) { + opal_output_verbose(2, orte_rmaps_base.rmaps_output, + "mca:rmaps:rr:slot assigning %d procs to node %s", + (int)num_procs_to_assign, node->name); + for (i=0; i < num_procs_to_assign && nprocs_mapped < app->num_procs; i++) { /* add this node to the map - do it only once */ if (!node->mapped) { if (ORTE_SUCCESS > (rc = opal_pointer_array_add(jdata->map->nodes, (void*)node))) {