Skip to content
Snippets Groups Projects
Commit 1a70e18d authored by Georges Da Costa's avatar Georges Da Costa
Browse files

removes debug printing

parent 74fcb21f
No related branches found
No related tags found
No related merge requests found
Pipeline #9766 passed
...@@ -172,12 +172,12 @@ unsigned int get_rapl(uint64_t *results, void *ptr) ...@@ -172,12 +172,12 @@ unsigned int get_rapl(uint64_t *results, void *ptr)
IntelRapl *state = (IntelRapl *) ptr; IntelRapl *state = (IntelRapl *) ptr;
_get_rapl(state->tmp_values, state); _get_rapl(state->tmp_values, state);
fprintf(stderr, "RAPL\t"); /* fprintf(stderr, "RAPL\t");
for (unsigned int i = 0; i < state->nb; i++) { for (unsigned int i = 0; i < state->nb; i++) {
fprintf(stderr, "%" PRIu64 "\t", state->values[i]); fprintf(stderr, "%" PRIu64 "\t", state->values[i]);
} }
fprintf(stderr, "\n"); fprintf(stderr, "\n");
*/
for (unsigned int i = 0; i < state->nb; i++) { for (unsigned int i = 0; i < state->nb; i++) {
results[i] = modulo_substraction_bound(state->tmp_values[i], results[i] = modulo_substraction_bound(state->tmp_values[i],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment