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/FlattenLayerFixture.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'tests/benchmark/fixtures/FlattenLayerFixture.h') diff --git a/tests/benchmark/fixtures/FlattenLayerFixture.h b/tests/benchmark/fixtures/FlattenLayerFixture.h index 749fa0d7d6..3d46989f71 100644 --- a/tests/benchmark/fixtures/FlattenLayerFixture.h +++ b/tests/benchmark/fixtures/FlattenLayerFixture.h @@ -46,11 +46,9 @@ public: TensorShape shape_flatten(shape); shape_flatten.collapse(3); - const unsigned int fixed_point_position = is_data_type_fixed_point(data_type) ? 4 : 0; - // Create tensors - src = create_tensor(shape, data_type, 1, fixed_point_position); - dst = create_tensor(shape_flatten, data_type, 1, fixed_point_position); + src = create_tensor(shape, data_type, 1); + dst = create_tensor(shape_flatten, data_type, 1); // Create and configure function flatten_func.configure(&src, &dst); -- cgit v1.2.1