12345678910111213141516171819202122232425262728293031 |
- .PHONY: requirements runtime benchmark power_measurement execute_benchmarks execute_benchmarks_batch create_charts execute_and_plot execute_and_plot_batch
- all: requirements runtime benchmark power_measurement
- requirements:
- deploy/install-requirements.sh
- runtime:
- deploy/get-and-compile-runtime.sh
- benchmark:
- deploy/get-and-compile-benchmark.sh
- power_measurement:
- deploy/get-and-compile-power-utility.sh
- execute_benchmarks:
- cd build/rodinia-benchmark; make OPENCL_BENCHMARK_ALL
- execute_benchmarks_batch:
- cd build/rodinia-benchmark; make OPENCL_BENCHMARK_ALL_BATCH
- create_charts:
- cd build/rodinia-benchmark; make CREATE_CHARTS; cp -r charts ../../; echo "look in the charts folder in this path"
- execute_and_plot: execute_benchmarks create_charts
- execute_and_plot_batch: execute_benchmarks_batch create_charts
- clean:
- rm -rf build
|