From 35ceeb2199c569810a1524a0a21c2df2a3f5f29e Mon Sep 17 00:00:00 2001 From: Diego Lopez Recas Date: Mon, 4 Dec 2017 18:56:10 +0000 Subject: IVGCVSW-798 Add Softmax NEON support for QASYMM8 Change-Id: I4f2cca52caf210fdb7d6bb7e9436ac51cb5088b4 Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/112398 Reviewed-by: Anthony Barbier Tested-by: Jenkins --- arm_compute/core/ITensorInfo.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'arm_compute/core/ITensorInfo.h') diff --git a/arm_compute/core/ITensorInfo.h b/arm_compute/core/ITensorInfo.h index 9a67712f3d..9112f3ea18 100644 --- a/arm_compute/core/ITensorInfo.h +++ b/arm_compute/core/ITensorInfo.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2016, 2017 ARM Limited. + * Copyright (c) 2016-2018 ARM Limited. * * SPDX-License-Identifier: MIT * @@ -79,7 +79,7 @@ public: * * @return Reference to this ITensorInfo object */ - virtual ITensorInfo &set_tensor_shape(TensorShape shape) = 0; + virtual ITensorInfo &set_tensor_shape(const TensorShape &shape) = 0; /** Set the fixed point position to the specified value * * @warning The fixed point position must be set once the data type has been configured @@ -95,7 +95,7 @@ public: * * @return Reference to this ITensorInfo object */ - virtual ITensorInfo &set_quantization_info(QuantizationInfo quantization_info) = 0; + virtual ITensorInfo &set_quantization_info(const QuantizationInfo &quantization_info) = 0; /** Resets the padding settings of the tensor. * * @return Reference to this ITensorInfo object @@ -214,7 +214,7 @@ public: * * @param[in] valid_region Valid region to set. */ - virtual void set_valid_region(ValidRegion valid_region) = 0; + virtual void set_valid_region(const ValidRegion &valid_region) = 0; /** Get the quantization settings (scale and offset) of the tensor. * -- cgit v1.2.1