From 29a01c90fc372d31188ab7157b45b32ce24fa9b3 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Thu, 22 Aug 2019 11:44:04 +0100 Subject: COMPMID-2417: NEDequantizationLayer support for QASYMM8_PER_CHANNEL Change-Id: I1ef4ce8610e11e81702b0b7f0f7c437fed49833e Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/1795 Tested-by: Arm Jenkins Reviewed-by: Michele Di Giorgio Comments-Addressed: Arm Jenkins --- arm_compute/core/QuantizationInfo.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'arm_compute/core/QuantizationInfo.h') diff --git a/arm_compute/core/QuantizationInfo.h b/arm_compute/core/QuantizationInfo.h index 79afca0714..1517d48381 100644 --- a/arm_compute/core/QuantizationInfo.h +++ b/arm_compute/core/QuantizationInfo.h @@ -103,6 +103,17 @@ public: : _scale(scale), _offset() { } + /** Construct quantization info. + * + * @note Used for asymmetric per channel quantization + * + * @param[in] scale Scale. + * @param[in] offset Offset. + */ + QuantizationInfo(std::vector scale, std::vector offset) + : _scale(scale), _offset(offset) + { + } /** Scale vector accessor * * @return A reference to quantization scale metadata -- cgit v1.2.1