From 240b79de1c211ebb8d439b4a1c8c79777aa36f13 Mon Sep 17 00:00:00 2001 From: SiCong Li Date: Tue, 24 Sep 2019 15:50:34 +0100 Subject: COMPMID-2692 Use existing command line infrastructure for CLGEMMReshapedOnlyRHS * Refactor to use existing command line infrastructure. * Fix: Remove errorneous initialisation code for dst matrix. * Fix: Correctly set bias tensor to be a vector. Change-Id: I787bfa08392df806aba3b0be09bab015f16010f7 Signed-off-by: SiCong Li Reviewed-on: https://review.mlplatform.org/c/1985 Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Gian Marco Iodice Reviewed-by: Georgios Pinitas --- tests/SConscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/SConscript') diff --git a/tests/SConscript b/tests/SConscript index 9777d49346..3e462910ae 100644 --- a/tests/SConscript +++ b/tests/SConscript @@ -225,11 +225,12 @@ if test_env['benchmark_examples']: if test_env['gemm_tuner'] and test_env['opencl']: gemm_tuner_examples = [] + gemm_tuner_common_options = test_env.Object(source="../examples/gemm_tuner/CommonGemmExampleOptions.cpp", target="CommonGemmExampleOptions") 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"]) ] + gemm_tuner_examples += [ test_env.Program(example, [ test_env.Object(source=file, target=example), gemm_tuner_common_options ] + files_benchmark_examples, LIBS = test_env["LIBS"]) ] arm_compute_benchmark_examples += gemm_tuner_examples # Graph examples -- cgit v1.2.1