Browse Source

Added GPU benchmarks target in the Makefile

Added a new target that takes care of executing also the GPU benchmarks,
copying the relative part from the gpu-benchmark branch of the repo.
Thanks to the parametrization of the time-and-save script we can decide
wath benchmarks to execute.
Andrea Gussoni 8 years ago
parent
commit
cc1146c62f
1 changed files with 20 additions and 0 deletions
  1. 20 0
      Makefile

+ 20 - 0
Makefile

@@ -47,6 +47,26 @@ OPENCL_BENCHMARK_CPU:
 	./time-and-save.sh opencl/heartwall times.dat cpu
 	./time-and-save.sh opencl/hybridsort times.dat cpu
 	./time-and-save.sh opencl/dwt2d times.dat cpu
+	
+OPENCL_BENCHMARK_GPU:
+	./time-and-save.sh opencl/backprop times.dat gpu
+	./time-and-save.sh opencl/bfs times.dat gpu
+	./time-and-save.sh opencl/cfd times.dat gpu
+	./time-and-save.sh opencl/hotspot times.dat gpu
+	./time-and-save.sh opencl/kmeans times.dat gpu
+	./time-and-save.sh opencl/lavaMD times.dat gpu
+	./time-and-save.sh opencl/leukocyte/OpenCL times.dat gpu
+	./time-and-save.sh opencl/lud/ocl times.dat gpu
+	./time-and-save.sh opencl/nw times.dat gpu
+	./time-and-save.sh opencl/srad times.dat gpu
+	./time-and-save.sh opencl/streamcluster times.dat gpu
+	./time-and-save.sh opencl/pathfinder times.dat gpu
+	./time-and-save.sh opencl/particlefilter times.dat gpu
+	./time-and-save.sh opencl/gaussian times.dat gpu
+	./time-and-save.sh opencl/nn times.dat gpu
+	./time-and-save.sh opencl/heartwall times.dat gpu
+	./time-and-save.sh opencl/hybridsort times.dat gpu
+	./time-and-save.sh opencl/dwt2d times.dat gpu
 
 clean: OCL_clean OPENCL_BENCHMARK_clean