aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastiano Tronto <sebastiano@tronto.net>2024-09-18 10:41:42 +0200
committerSebastiano Tronto <sebastiano@tronto.net>2024-09-18 10:41:42 +0200
commit324cfaf3b9ff7b1b8576e679e4ce571628f37fde (patch)
tree59536e0f2f88415e7ca0db209763e7ae127e137d
parentc0aa77e610366e60f7ecf70db481d8d2cfb66c35 (diff)
downloadnissy-core-324cfaf3b9ff7b1b8576e679e4ce571628f37fde.tar.gz
nissy-core-324cfaf3b9ff7b1b8576e679e4ce571628f37fde.zip
Remove useless output from stats tool
-rw-r--r--tools/010_stats_tables_h48/stats_tables_h48.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/010_stats_tables_h48/stats_tables_h48.c b/tools/010_stats_tables_h48/stats_tables_h48.c
index 18fd411..adac8fa 100644
--- a/tools/010_stats_tables_h48/stats_tables_h48.c
+++ b/tools/010_stats_tables_h48/stats_tables_h48.c
@@ -73,7 +73,7 @@ void run(void) {
73 73
74 for (j = 0; j < 12; j++) { 74 for (j = 0; j < 12; j++) {
75 printf("Data for h=%" PRId64 "\n", j); 75 printf("Data for h=%" PRId64 "\n", j);
76 for (k = 0, avg = 0.0; k <= 16; k++) { 76 for (k = 0, avg = 0.0; k < 16; k++) {
77 for (i = 0, tot = 0; i < THREADS; i++) 77 for (i = 0, tot = 0; i < THREADS; i++)
78 tot += arg[i].v[j][k]; 78 tot += arg[i].v[j][k];
79 printf("%" PRId64 "\t%" PRId64 "\n", k, tot); 79 printf("%" PRId64 "\t%" PRId64 "\n", k, tot);

Generated with cgit - Back to sebastiano.tronto.net