aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/CompatibleTypes.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/CompatibleTypes.hpp')
-rw-r--r--src/armnn/CompatibleTypes.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/armnn/CompatibleTypes.hpp b/src/armnn/CompatibleTypes.hpp
index cc545a9642..bca092ca0c 100644
--- a/src/armnn/CompatibleTypes.hpp
+++ b/src/armnn/CompatibleTypes.hpp
@@ -32,7 +32,7 @@ inline bool CompatibleTypes<Half>(DataType dataType)
template<>
inline bool CompatibleTypes<uint8_t>(DataType dataType)
{
- return dataType == DataType::Boolean || dataType == DataType::QuantisedAsymm8;
+ return dataType == DataType::Boolean || dataType == DataType::QAsymmU8;
}
template<>
@@ -44,7 +44,7 @@ inline bool CompatibleTypes<int8_t>(DataType dataType)
template<>
inline bool CompatibleTypes<int16_t>(DataType dataType)
{
- return dataType == DataType::QuantisedSymm16;
+ return dataType == DataType::QSymmS16;
}
template<>