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/stencils/fdtd-2d.c | 9 +++++++++ benchmarks/polybench-syn/stencils/heat-3d.c | 7 +++++++ benchmarks/polybench-syn/stencils/jacobi-1d.c | 7 +++++++ benchmarks/polybench-syn/stencils/jacobi-2d.c | 8 ++++++++ benchmarks/polybench-syn/stencils/seidel-2d.c | 7 +++++++ 5 files changed, 38 insertions(+) (limited to 'benchmarks/polybench-syn/stencils') diff --git a/benchmarks/polybench-syn/stencils/fdtd-2d.c b/benchmarks/polybench-syn/stencils/fdtd-2d.c index 853d362..c29982e 100644 --- a/benchmarks/polybench-syn/stencils/fdtd-2d.c +++ b/benchmarks/polybench-syn/stencils/fdtd-2d.c @@ -10,6 +10,11 @@ /* fdtd-2d.c: this file is part of PolyBench/C */ +#ifndef SYNTHESIS +#include +#endif + + #include "../include/misc.h" #define plus(i) i = i + ONE @@ -64,6 +69,10 @@ int print_array(int nx, res ^= hz[i][j]; } +#ifndef SYNTHESIS + printf("finished %u\n", res); +#endif + return res; } diff --git a/benchmarks/polybench-syn/stencils/heat-3d.c b/benchmarks/polybench-syn/stencils/heat-3d.c index 8df16d4..4bc92ee 100644 --- a/benchmarks/polybench-syn/stencils/heat-3d.c +++ b/benchmarks/polybench-syn/stencils/heat-3d.c @@ -11,6 +11,10 @@ #include "../include/misc.h" +#ifndef SYNTHESIS +#include +#endif + #define plus(i) i = i + ONE static void init_array (int n, @@ -43,6 +47,9 @@ int print_array(int n, for (k = 0; k < n; plus(k)) { res ^= A[i][j][k]; } +#ifndef SYNTHESIS + printf("finished %u\n", res); +#endif return res; } diff --git a/benchmarks/polybench-syn/stencils/jacobi-1d.c b/benchmarks/polybench-syn/stencils/jacobi-1d.c index 95cbb35..7b1d692 100644 --- a/benchmarks/polybench-syn/stencils/jacobi-1d.c +++ b/benchmarks/polybench-syn/stencils/jacobi-1d.c @@ -11,6 +11,10 @@ #include "../include/misc.h" +#ifndef SYNTHESIS +#include +#endif + #define plus(i) i = i + ONE static void init_array (int n, @@ -45,6 +49,9 @@ int print_array(int n, { res ^= A[i]; } +#ifndef SYNTHESIS + printf("finished %u\n", res); +#endif return res; } diff --git a/benchmarks/polybench-syn/stencils/jacobi-2d.c b/benchmarks/polybench-syn/stencils/jacobi-2d.c index 11349f4..2d61d76 100644 --- a/benchmarks/polybench-syn/stencils/jacobi-2d.c +++ b/benchmarks/polybench-syn/stencils/jacobi-2d.c @@ -11,6 +11,11 @@ #include "../include/misc.h" +#ifndef SYNTHESIS +#include +#endif + + #define plus(i) i = i + ONE static void init_array (int n, @@ -46,6 +51,9 @@ int print_array(int n, for (j = 0; j < n; plus(j)) { res ^= A[i][j]; } +#ifndef SYNTHESIS + printf("finished %u\n", res); +#endif return res; } diff --git a/benchmarks/polybench-syn/stencils/seidel-2d.c b/benchmarks/polybench-syn/stencils/seidel-2d.c index 23ddc74..eb48acc 100644 --- a/benchmarks/polybench-syn/stencils/seidel-2d.c +++ b/benchmarks/polybench-syn/stencils/seidel-2d.c @@ -11,6 +11,10 @@ #include "../include/misc.h" +#ifndef SYNTHESIS +#include +#endif + #define plus(i) i = i + ONE static void init_array (int n, @@ -41,6 +45,9 @@ int print_array(int n, for (j = 0; j < n; plus(j)) { res ^= A[i][j]; } +#ifndef SYNTHESIS + printf("finished %u\n", res); +#endif return res; } -- cgit