aboutsummaryrefslogtreecommitdiff
path: root/Utils.cpp
diff options
context:
space:
mode:
authorPablo Tello <pablo.tello@arm.com>2019-10-18 16:51:57 +0100
committerMatteo Martincigh <matteo.martincigh@arm.com>2019-11-07 09:22:36 +0000
commitfb45e2f86a6c6ba7ff08554c872c8876820f0a7f (patch)
treeefcf13e9d348663607ade87e97c609093f300c1b /Utils.cpp
parent9f0693b41a33d4d17ef016d8a5490cc65a8cfb8a (diff)
downloadandroid-nn-driver-fb45e2f86a6c6ba7ff08554c872c8876820f0a7f.tar.gz
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 <pablo.tello@arm.com> Signed-off-by: Matteo Martincigh <matteo.martincigh@arm.com> Change-Id: I854eea6a74a6959606ff25b52a0ed80b3e0a18ab
Diffstat (limited to 'Utils.cpp')
-rw-r--r--Utils.cpp1
1 files changed, 1 insertions, 0 deletions
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: