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 --- .../fixtures/DepthwiseSeparableConvolutionLayerFixture.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'tests/benchmark/fixtures/DepthwiseSeparableConvolutionLayerFixture.h') diff --git a/tests/benchmark/fixtures/DepthwiseSeparableConvolutionLayerFixture.h b/tests/benchmark/fixtures/DepthwiseSeparableConvolutionLayerFixture.h index ef1a40704f..927bb4d64d 100644 --- a/tests/benchmark/fixtures/DepthwiseSeparableConvolutionLayerFixture.h +++ b/tests/benchmark/fixtures/DepthwiseSeparableConvolutionLayerFixture.h @@ -47,18 +47,18 @@ public: PadStrideInfo pad_stride_depthwise_info, PadStrideInfo pad_stride_pointwise_info, DataType data_type, int batches) { // Set batched in source and destination shapes - const unsigned int fixed_point_position = 4; + src_shape.set(3 /* batch */, batches); depthwise_out_shape.set(3 /* batch */, batches); dst_shape.set(3 /* batch */, batches); - src = create_tensor(src_shape, data_type, 1, fixed_point_position); - depthwise_weights = create_tensor(depthwise_weights_shape, data_type, 1, fixed_point_position); - depthwise_biases = create_tensor(depthwise_biases_shape, data_type, 1, fixed_point_position); - depthwise_out = create_tensor(depthwise_out_shape, data_type, 1, fixed_point_position); - pointwise_weights = create_tensor(pointwise_weights_shape, data_type, 1, fixed_point_position); - pointwise_biases = create_tensor(pointwise_biases_shape, data_type, 1, fixed_point_position); - dst = create_tensor(dst_shape, data_type, 1, fixed_point_position); + src = create_tensor(src_shape, data_type, 1); + depthwise_weights = create_tensor(depthwise_weights_shape, data_type, 1); + depthwise_biases = create_tensor(depthwise_biases_shape, data_type, 1); + depthwise_out = create_tensor(depthwise_out_shape, data_type, 1); + pointwise_weights = create_tensor(pointwise_weights_shape, data_type, 1); + pointwise_biases = create_tensor(pointwise_biases_shape, data_type, 1); + dst = create_tensor(dst_shape, data_type, 1); // Create and configure function depth_sep_conv_layer.configure(&src, &depthwise_weights, &depthwise_biases, &depthwise_out, &pointwise_weights, &pointwise_biases, &dst, pad_stride_depthwise_info, pad_stride_pointwise_info); -- cgit v1.2.1