From a302d696211c4e715916f6d19e865dc709cdae5f Mon Sep 17 00:00:00 2001 From: Giorgio Arena Date: Mon, 8 Jan 2018 16:19:23 +0000 Subject: COMPMID-753 Add benchmarks for QASYMM8 depthwise convolution layers used in MobileNet Change-Id: I72cdf54477838b01bc5fa1281b0b587646f1902b Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/115396 Tested-by: Jenkins Reviewed-by: Gian Marco Iodice --- tests/benchmark/fixtures/DepthwiseConvolutionLayerFixture.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/benchmark/fixtures/DepthwiseConvolutionLayerFixture.h') diff --git a/tests/benchmark/fixtures/DepthwiseConvolutionLayerFixture.h b/tests/benchmark/fixtures/DepthwiseConvolutionLayerFixture.h index d505ba3006..093655dfdc 100644 --- a/tests/benchmark/fixtures/DepthwiseConvolutionLayerFixture.h +++ b/tests/benchmark/fixtures/DepthwiseConvolutionLayerFixture.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2017 ARM Limited. + * Copyright (c) 2017, 2018 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -50,7 +50,7 @@ public: // Create tensors src = create_tensor(src_shape, data_type, 1, fixed_point_position); weights = create_tensor(weights_shape, data_type, 1, fixed_point_position); - biases = create_tensor(TensorShape(weights_shape[2]), data_type, 1, fixed_point_position); + 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); // Create and configure function -- cgit v1.2.1