aboutsummaryrefslogtreecommitdiffstats
path: root/benchmarks/polybench-syn/stencils/fdtd-2d.c
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks/polybench-syn/stencils/fdtd-2d.c')
-rw-r--r--benchmarks/polybench-syn/stencils/fdtd-2d.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/benchmarks/polybench-syn/stencils/fdtd-2d.c b/benchmarks/polybench-syn/stencils/fdtd-2d.c
index b699937..17acd34 100644
--- a/benchmarks/polybench-syn/stencils/fdtd-2d.c
+++ b/benchmarks/polybench-syn/stencils/fdtd-2d.c
@@ -9,7 +9,6 @@
*/
/* fdtd-2d.c: this file is part of PolyBench/C */
-#include <stdio.h>
#define plus(i) i = i + ONE
static
@@ -65,10 +64,6 @@ int print_array(int nx,
res ^= hz[i][j];
}
-#ifndef SYNTHESIS
- printf("finished: %u\n", res);
-#endif
-
return res;
}
@@ -85,8 +80,6 @@ void kernel_fdtd_2d(int tmax,
int t, i, j;
int ONE = 1;
-#pragma scop
-
for(t = 0; t < tmax; t=t+ONE)
{
for (j = 0; j < ny; plus(j))
@@ -105,7 +98,6 @@ void kernel_fdtd_2d(int tmax,
}
}
-#pragma endscop
}