From fb45e2f86a6c6ba7ff08554c872c8876820f0a7f Mon Sep 17 00:00:00 2001 From: Pablo Tello Date: Fri, 18 Oct 2019 16:51:57 +0100 Subject: MLCE-133 Fixed ASR hero use-case * Added workaround in FC to deal with non const weights * Added workaround in LSTM to deal with non const weights Signed-off-by: Pablo Tello Signed-off-by: Matteo Martincigh Change-Id: I854eea6a74a6959606ff25b52a0ed80b3e0a18ab --- Utils.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'Utils.cpp') diff --git a/Utils.cpp b/Utils.cpp index 246d6415..555039ca 100644 --- a/Utils.cpp +++ b/Utils.cpp @@ -127,6 +127,7 @@ 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