aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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