aboutsummaryrefslogtreecommitdiff
path: root/Utils.cpp
diff options
context:
space:
mode:
authorMike Kelly <mike.kelly@arm.com>2019-12-11 19:27:11 +0000
committerMike Kelly <mike.kelly@arm.com>2019-12-11 19:27:11 +0000
commitc7d0d44812336f4db8ab9a649fb40b4d4ed27e97 (patch)
tree6dc06685a5e6f9458b1b063360e854f76b803b10 /Utils.cpp
parent1df647726b9f5a1bb725e13919f1f7fa506865c9 (diff)
downloadandroid-nn-driver-c7d0d44812336f4db8ab9a649fb40b4d4ed27e97.tar.gz
Catch std::exception instead of armnn::Exception
Signed-off-by: Derek Lamberti <derek.lamberti@arm.com> MLCE-143 Fix for reference implementation for service stopping when running CTS. *ConvertDepthwise reports that weights are not supported with the first dimension of the tensor is not 1 *ConvertConcat was missing one case for reporting unsupported inputs. Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> MLCE-144 Cts NNAPI test cases failed * Fixed numerous CTS/VTS failures related to Quantization !armnn:2457 Signed-off-by: Mike Kelly <mike.kelly@arm.com> MLCE-144 Fix 2d pooling convert function Signed-off-by: FinnWilliamsArm <Finn.Williams@Arm.com> Change-Id: I054635ebfd52cb5575490c3bfaae0104eb1685cc
Diffstat (limited to 'Utils.cpp')
-rw-r--r--Utils.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/Utils.cpp b/Utils.cpp
index 43b65ee3..2f9a4a34 100644
--- a/Utils.cpp
+++ b/Utils.cpp
@@ -122,6 +122,9 @@ armnn::TensorInfo GetTensorInfoForOperand(const V1_2::Operand& operand)
case V1_2::OperandType::TENSOR_QUANT8_ASYMM:
type = armnn::DataType::QuantisedAsymm8;
break;
+ case V1_2::OperandType::TENSOR_QUANT8_SYMM:
+ type = armnn::DataType::QuantisedSymm8;
+ break;
case V1_2::OperandType::TENSOR_QUANT16_SYMM:
type = armnn::DataType::QuantisedSymm16;
break;