aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/CompatibleTypes.hpp
diff options
context:
space:
mode:
authorFinn Williams <Finn.Williams@arm.com>2019-12-04 14:27:27 +0000
committerJim Flynn Arm <jim.flynn@arm.com>2019-12-09 15:39:16 +0000
commitfd2710651ada27fc82f28c07fb1e09effc3bda2d (patch)
tree7c2200489c7a3f845b91362c2c8d66ab9c6101e8 /src/armnn/CompatibleTypes.hpp
parent6a5e5e8b7e56f927d70ced3203d6e16df3fdd189 (diff)
downloadarmnn-fd2710651ada27fc82f28c07fb1e09effc3bda2d.tar.gz
IVGCVSW-4211 Add Signed 8 bit Quantisation support into the Reference backend
!android-nn-driver:2435 Signed-off-by: Finn Williams <Finn.Williams@arm.com> Change-Id: I10ecd4a8937725953396805f33a3562a5384c4d4
Diffstat (limited to 'src/armnn/CompatibleTypes.hpp')
-rw-r--r--src/armnn/CompatibleTypes.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/armnn/CompatibleTypes.hpp b/src/armnn/CompatibleTypes.hpp
index 06aa064f7b..fd33f6c37a 100644
--- a/src/armnn/CompatibleTypes.hpp
+++ b/src/armnn/CompatibleTypes.hpp
@@ -38,7 +38,7 @@ inline bool CompatibleTypes<uint8_t>(DataType dataType)
template<>
inline bool CompatibleTypes<int8_t>(DataType dataType)
{
- return dataType == DataType::QuantisedSymm8 || dataType == DataType::QuantizedSymm8PerAxis;
+ return dataType == DataType::QSymmS8 || dataType == DataType::QuantizedSymm8PerAxis;
}
template<>