From 38b249970456a55f0a69ff28070887367e113205 Mon Sep 17 00:00:00 2001 From: Nadesh Ramanathan Date: Tue, 17 Nov 2020 09:06:04 +0000 Subject: final checks reworked and including compilation time in script --- benchmarks/polybench-syn/linear-algebra/blas/trmm.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'benchmarks/polybench-syn/linear-algebra/blas/trmm.c') diff --git a/benchmarks/polybench-syn/linear-algebra/blas/trmm.c b/benchmarks/polybench-syn/linear-algebra/blas/trmm.c index e369fd0..a14d131 100644 --- a/benchmarks/polybench-syn/linear-algebra/blas/trmm.c +++ b/benchmarks/polybench-syn/linear-algebra/blas/trmm.c @@ -11,6 +11,9 @@ #include "../../include/misc.h" +#ifndef SYNTHESIS + #include +#endif #define plus(i) i = i + ONE static void init_array(int m, int n, @@ -49,6 +52,9 @@ int print_array(int m, int n, for (j = 0; j < n; plus(j)) { res ^= B[i][j]; } +#ifndef SYNTHESIS + printf("finished %u\n", res); +#endif return res; } -- cgit