From 014333d73883c3872e458cedda5ccef586a7ccd4 Mon Sep 17 00:00:00 2001 From: Vidhya Sudhan Loganathan Date: Mon, 2 Jul 2018 09:13:49 +0100 Subject: COMPMID-970 : Remove QS8 / QS16 support Removed Fixed point position arguments from test sources Change-Id: I8343724723b71611fd501ed34de0866d3fb60e7e Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/136382 Tested-by: Jenkins Reviewed-by: Michele DiGiorgio Reviewed-by: Anthony Barbier --- tests/benchmark/fixtures/GEMMFixture.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'tests/benchmark/fixtures/GEMMFixture.h') diff --git a/tests/benchmark/fixtures/GEMMFixture.h b/tests/benchmark/fixtures/GEMMFixture.h index f706f3eda6..7628abca01 100644 --- a/tests/benchmark/fixtures/GEMMFixture.h +++ b/tests/benchmark/fixtures/GEMMFixture.h @@ -44,13 +44,11 @@ public: template void setup(TensorShape shape_a, TensorShape shape_b, TensorShape shape_c, TensorShape shape_dst, float alpha, float beta, DataType data_type, bool reshape_b_only_on_first_run) { - constexpr int fixed_point_position = 4; - // Create tensors - a = create_tensor(shape_a, data_type, 1, fixed_point_position); - b = create_tensor(shape_b, data_type, 1, fixed_point_position); - c = create_tensor(shape_c, data_type, 1, fixed_point_position); - dst = create_tensor(shape_dst, data_type, 1, fixed_point_position); + a = create_tensor(shape_a, data_type, 1); + b = create_tensor(shape_b, data_type, 1); + c = create_tensor(shape_c, data_type, 1); + dst = create_tensor(shape_dst, data_type, 1); // Create and configure function gemm.configure(&a, &b, &c, &dst, alpha, beta, GEMMInfo(false, false, reshape_b_only_on_first_run)); -- cgit v1.2.1