From 08346e9b9a7dadd2f0765aea64e656902d843e8a Mon Sep 17 00:00:00 2001 From: Georgios Pinitas Date: Tue, 16 Oct 2018 19:10:46 +0100 Subject: COMPMID-1451:Fuse RELU,LU_BOUNDED_RELU with requantization in NEGEMMConvolutionLayer. Change-Id: Iea5f2c5bcac8051c4c7655a6eabb2c43772eb31f Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/154104 Tested-by: bsgcomp Reviewed-by: Michele DiGiorgio Reviewed-by: Gian Marco Iodice --- arm_compute/core/Types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'arm_compute/core/Types.h') diff --git a/arm_compute/core/Types.h b/arm_compute/core/Types.h index c0350bc7a4..8a8cd509fa 100644 --- a/arm_compute/core/Types.h +++ b/arm_compute/core/Types.h @@ -148,7 +148,7 @@ struct QuantizationInfo * * @return True if the given quantization info is the same. */ - bool operator==(const QuantizationInfo &other) + bool operator==(const QuantizationInfo &other) const { return scale == other.scale && offset == other.offset; } @@ -159,7 +159,7 @@ struct QuantizationInfo * * @return True if the given quantization info is not the same. */ - bool operator!=(const QuantizationInfo &other) + bool operator!=(const QuantizationInfo &other) const { return !(*this == other); } -- cgit v1.2.1