From 65a1b1d600cbccf7269409cb7ca0947f0222cb8b Mon Sep 17 00:00:00 2001 From: Aron Virginas-Tar Date: Fri, 15 Nov 2019 15:59:51 +0000 Subject: IVGCVSW-4139 Fix regression in ConvertDequantize() * Removed TENSOR_QUANT8_SYMM from the list of generally supported tensor data types * Fixed tensor info in DequantizeIfRequired() for on the fly dequantized QSymm8 weights * Moved code for checking whether a Dequantize operator is linked to FullyConnected or Lstm weights from ConvertDequantize() into a separate function inside 1.2/HalPolicy.cpp Signed-off-by: Aron Virginas-Tar Change-Id: I19ea6f89a90f553a964b87d44f8ad8a064e96f7f --- Utils.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'Utils.cpp') diff --git a/Utils.cpp b/Utils.cpp index 555039ca..246d6415 100644 --- a/Utils.cpp +++ b/Utils.cpp @@ -127,7 +127,6 @@ armnn::TensorInfo GetTensorInfoForOperand(const V1_2::Operand& operand) type = armnn::DataType::QuantizedSymm8PerAxis; break; case V1_2::OperandType::TENSOR_QUANT8_ASYMM: - case V1_2::OperandType::TENSOR_QUANT8_SYMM: type = armnn::DataType::QuantisedAsymm8; break; case V1_2::OperandType::TENSOR_QUANT16_SYMM: -- cgit v1.2.1