From 5b52fe3a4481769adcf42218a3747486cb4e9c14 Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Thu, 12 Jul 2018 12:42:35 +0100 Subject: COMPMID-1390: OCLGrind and benchmark tests fail for QASYMM8 COMPMID-1392: OCLGrind failures in im2col1x1_stridex1_dchw COMPMID-1395: OCLGrind failures in output_stage_quantized Change-Id: I35504bd1f701316df122be52d458c71bbd7e7909 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/139722 Tested-by: Jenkins Reviewed-by: Giorgio Arena Reviewed-by: Anthony Barbier --- tests/benchmark/fixtures/ConvolutionLayerFixture.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests/benchmark') diff --git a/tests/benchmark/fixtures/ConvolutionLayerFixture.h b/tests/benchmark/fixtures/ConvolutionLayerFixture.h index 338a02162d..b23c3457ab 100644 --- a/tests/benchmark/fixtures/ConvolutionLayerFixture.h +++ b/tests/benchmark/fixtures/ConvolutionLayerFixture.h @@ -46,16 +46,16 @@ public: int batches) { // Set batched in source and destination shapes - src_shape.set(3 /* batch */, batches); dst_shape.set(3 /* batch */, batches); - DataType bias_data_type = is_data_type_quantized_asymmetric(data_type) ? DataType::S32 : data_type; + DataType bias_data_type = is_data_type_quantized_asymmetric(data_type) ? DataType::S32 : data_type; + const QuantizationInfo qinfo(2.f / 255.f, 127); // Create tensors - src = create_tensor(src_shape, data_type, 1); - weights = create_tensor(weights_shape, data_type, 1); + src = create_tensor(src_shape, data_type, 1, qinfo); + weights = create_tensor(weights_shape, data_type, 1, qinfo); biases = create_tensor(biases_shape, bias_data_type, 1); - dst = create_tensor(dst_shape, data_type, 1); + dst = create_tensor(dst_shape, data_type, 1, qinfo); // Create and configure function conv_layer.configure(&src, &weights, &biases, &dst, info, WeightsInfo(), dilation, act_info); -- cgit v1.2.1