aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSiCong Li <sicong.li@arm.com>2019-09-24 15:50:34 +0100
committerGeorgios Pinitas <georgios.pinitas@arm.com>2019-09-27 09:31:07 +0000
commit240b79de1c211ebb8d439b4a1c8c79777aa36f13 (patch)
treec468b1d8f66699e90c728b650c2c6959aef6b2d5 /tests
parentbc88c621bd89cb93b503e2d8386383ff9ae6412a (diff)
downloadComputeLibrary-240b79de1c211ebb8d439b4a1c8c79777aa36f13.tar.gz
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 <sicong.li@arm.com> Reviewed-on: https://review.mlplatform.org/c/1985 Comments-Addressed: Arm Jenkins <bsgcomp@arm.com> Tested-by: Arm Jenkins <bsgcomp@arm.com> Reviewed-by: Gian Marco Iodice <gianmarco.iodice@arm.com> Reviewed-by: Georgios Pinitas <georgios.pinitas@arm.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/SConscript3
1 files changed, 2 insertions, 1 deletions
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