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/GEMMLowpFixture.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/benchmark/fixtures/GEMMLowpFixture.h') diff --git a/tests/benchmark/fixtures/GEMMLowpFixture.h b/tests/benchmark/fixtures/GEMMLowpFixture.h index b5381b0934..46a2f5cc6a 100644 --- a/tests/benchmark/fixtures/GEMMLowpFixture.h +++ b/tests/benchmark/fixtures/GEMMLowpFixture.h @@ -53,9 +53,9 @@ public: // Note: The offsets for matrix A and matrix B are set to 0 in order to skip the computation for the offset contribution // Create tensors - a = create_tensor(shape_a, DataType::QASYMM8, 1, 0, QuantizationInfo(1.0f / 255.0f, 0)); - b = create_tensor(shape_b, DataType::QASYMM8, 1, 0, QuantizationInfo(1.0f / 255.0f, 0)); - c = create_tensor(shape_dst, DataType::S32, 1, 0, QuantizationInfo(1.0f / 255.0f, 0)); + a = create_tensor(shape_a, DataType::QASYMM8, 1, QuantizationInfo(1.0f / 255.0f, 0)); + b = create_tensor(shape_b, DataType::QASYMM8, 1, QuantizationInfo(1.0f / 255.0f, 0)); + c = create_tensor(shape_dst, DataType::S32, 1, QuantizationInfo(1.0f / 255.0f, 0)); // Create and configure function gemmlowp.configure(&a, &b, &c); -- cgit v1.2.1