From 324cfaf3b9ff7b1b8576e679e4ce571628f37fde Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Wed, 18 Sep 2024 10:41:42 +0200 Subject: Remove useless output from stats tool --- tools/010_stats_tables_h48/stats_tables_h48.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') 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) { for (j = 0; j < 12; j++) { printf("Data for h=%" PRId64 "\n", j); - for (k = 0, avg = 0.0; k <= 16; k++) { + for (k = 0, avg = 0.0; k < 16; k++) { for (i = 0, tot = 0; i < THREADS; i++) tot += arg[i].v[j][k]; printf("%" PRId64 "\t%" PRId64 "\n", k, tot); -- cgit v1.3