From 42865ddab02bd39e249ec852cd12c7f229d8ab58 Mon Sep 17 00:00:00 2001 From: Thomas Roehl Date: Mon, 2 Dec 2024 15:51:02 +0100 Subject: [PATCH] Remove debug prints from hwloc topology backend --- src/topology_hwloc.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/topology_hwloc.c b/src/topology_hwloc.c index 2c9baeebd..e927d03f7 100644 --- a/src/topology_hwloc.c +++ b/src/topology_hwloc.c @@ -547,31 +547,26 @@ hwloc_init_nodeTopology(cpu_set_t cpuSet) #endif if (maxNumSockets < maxNumDies) { - printf("Searching for socket of die\n"); hwloc_obj_t t = obj->parent; while (t->type != die_type) { t = t->parent; if (!t) { - printf("Cannot find type %d\n", die_type); skip = 1; break; } } if (skip) { - printf("setting die id = 0\n"); hwThreadPool[id].dieId = 0; continue; } if (t->type == die_type) { - printf("setting die id = %d\n", t->os_index); hwThreadPool[id].dieId = t->os_index; } else { - printf("setting die id = 0 (else)\n"); hwThreadPool[id].dieId = 0; } }