aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Kelly <mike.kelly@arm.com>2019-11-19 09:16:00 +0000
committerKevin May <kevin.may@arm.com>2019-11-19 18:34:07 +0000
commitd7de165909d24c7ece4a151890a7219b93a0528c (patch)
treef424c22ceddf85abb440bbb77c48e5da961d9448
parentac23b03935ee85ba4bfd772adbbe7ab2d35a8610 (diff)
downloadandroid-nn-driver-d7de165909d24c7ece4a151890a7219b93a0528c.tar.gz
MLCE-144 Cts NNAPI test cases failed
* Fixed numerous CTS/VTS failures related to Quantization !armnn:2316 Signed-off-by: Mike Kelly <mike.kelly@arm.com> Change-Id: I50b7edf42e416abd230783a5081d1a6511bc42d4
-rw-r--r--Utils.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/Utils.cpp b/Utils.cpp
index 246d6415..229f35b6 100644
--- a/Utils.cpp
+++ b/Utils.cpp
@@ -129,6 +129,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;