aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/SConscript9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/SConscript b/tests/SConscript
index c8de603541..9777d49346 100644
--- a/tests/SConscript
+++ b/tests/SConscript
@@ -223,6 +223,15 @@ if test_env['benchmark_examples']:
cl_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_benchmark_examples, LIBS = test_env["LIBS"]) ]
arm_compute_benchmark_examples += cl_examples
+ if test_env['gemm_tuner'] and test_env['opencl']:
+ gemm_tuner_examples = []
+ files = Glob("%s/gemm_tuner/cl_*.cpp" % examples_folder)
+ for file in files:
+ example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])
+ example = os.path.join("gemm_tuner", example)
+ gemm_tuner_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example) ] + files_benchmark_examples, LIBS = test_env["LIBS"]) ]
+ arm_compute_benchmark_examples += gemm_tuner_examples
+
# Graph examples
for file in Glob("%s/graph_*.cpp" % examples_folder ):
example = "benchmark_" + os.path.basename(os.path.splitext(str(file))[0])