From 287b570b86ba40a801136aded140b83435ca9314 Mon Sep 17 00:00:00 2001 From: Giorgio Arena Date: Fri, 16 Feb 2018 11:01:04 +0000 Subject: COMPMID-853 Use tile 2 for CL depthwise convolution QASYM8 Change-Id: I91f6a0b057f5eb84c6ac7db5abbc05c7520ed5d2 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/120760 Tested-by: Jenkins Reviewed-by: Anthony Barbier --- tests/benchmark/fixtures/DepthwiseConvolutionLayerFixture.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/benchmark/fixtures/DepthwiseConvolutionLayerFixture.h') diff --git a/tests/benchmark/fixtures/DepthwiseConvolutionLayerFixture.h b/tests/benchmark/fixtures/DepthwiseConvolutionLayerFixture.h index 8283b4d514..a156f4bc6f 100644 --- a/tests/benchmark/fixtures/DepthwiseConvolutionLayerFixture.h +++ b/tests/benchmark/fixtures/DepthwiseConvolutionLayerFixture.h @@ -48,10 +48,10 @@ public: dst_shape.set(3 /* batch */, batches); // Create tensors - src = create_tensor(src_shape, data_type, 1, fixed_point_position); - weights = create_tensor(weights_shape, data_type, 1, fixed_point_position); + src = create_tensor(src_shape, data_type, 1, fixed_point_position, QuantizationInfo(0.5f, 10)); + weights = create_tensor(weights_shape, data_type, 1, fixed_point_position, QuantizationInfo(0.5f, 10)); biases = create_tensor(TensorShape(weights_shape[2]), is_data_type_quantized_asymmetric(data_type) ? DataType::S32 : data_type, 1, fixed_point_position); - dst = create_tensor(dst_shape, data_type, 1, fixed_point_position); + dst = create_tensor(dst_shape, data_type, 1, fixed_point_position, QuantizationInfo(0.5f, 10)); // Create and configure function depth_conv.configure(&src, &weights, &biases, &dst, info); -- cgit v1.2.1