From 1a70e18d23776d80fcb3c273392711803e5cd30e Mon Sep 17 00:00:00 2001
From: Georges Da Costa <dacosta@irit.fr>
Date: Wed, 24 Jul 2024 09:46:13 +0200
Subject: [PATCH] removes debug printing

---
 src/rapl.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/rapl.c b/src/rapl.c
index 267d037..1115b75 100644
--- a/src/rapl.c
+++ b/src/rapl.c
@@ -172,12 +172,12 @@ unsigned int get_rapl(uint64_t *results, void *ptr)
     IntelRapl *state = (IntelRapl *) ptr;
     _get_rapl(state->tmp_values, state);
 
-    fprintf(stderr, "RAPL\t");
+    /*    fprintf(stderr, "RAPL\t");
     for (unsigned int i = 0; i < state->nb; i++) {
       fprintf(stderr, "%" PRIu64 "\t", state->values[i]);
     }
     fprintf(stderr, "\n");
-
+    */
     
     for (unsigned int i = 0; i < state->nb; i++) {
         results[i] = modulo_substraction_bound(state->tmp_values[i],
-- 
GitLab