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/GEMMInterleave4x4Fixture.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests/benchmark/fixtures/GEMMInterleave4x4Fixture.h') diff --git a/tests/benchmark/fixtures/GEMMInterleave4x4Fixture.h b/tests/benchmark/fixtures/GEMMInterleave4x4Fixture.h index 793c540482..c8e6f4a8db 100644 --- a/tests/benchmark/fixtures/GEMMInterleave4x4Fixture.h +++ b/tests/benchmark/fixtures/GEMMInterleave4x4Fixture.h @@ -44,14 +44,12 @@ public: template void setup(size_t x, size_t y, DataType data_type) { - constexpr int fixed_point_position = 4; - const TensorShape shape_a(x, y); const TensorShape shape_b(static_cast(x * 4.f), static_cast(std::ceil(y / 4.f))); // Create tensors - a = create_tensor(shape_a, data_type, 1, fixed_point_position); - b = create_tensor(shape_b, data_type, 1, fixed_point_position); + a = create_tensor(shape_a, data_type, 1); + b = create_tensor(shape_b, data_type, 1); // Create and configure function gemm.configure(&a, &b); -- cgit v1.2.1