aboutsummaryrefslogtreecommitdiff
path: root/Utils.cpp
diff options
context:
space:
mode:
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 c95f6e12..c548f849 100644
--- a/Utils.cpp
+++ b/Utils.cpp
@@ -113,6 +113,9 @@ armnn::TensorInfo GetTensorInfoForOperand(const V1_2::Operand& operand)
DataType type;
switch (operand.type)
{
+ case V1_2::OperandType::TENSOR_BOOL8:
+ type = armnn::DataType::Boolean;
+ break;
case V1_2::OperandType::TENSOR_FLOAT32:
type = armnn::DataType::Float32;
break;