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 8a17b532..aeee800b 100644
--- a/Utils.cpp
+++ b/Utils.cpp
@@ -174,6 +174,9 @@ armnn::TensorInfo GetTensorInfoForOperand(const V1_3::Operand& operand)
DataType type;
switch (operand.type)
{
+ case V1_3::OperandType::TENSOR_BOOL8:
+ type = armnn::DataType::Boolean;
+ break;
case V1_3::OperandType::TENSOR_FLOAT32:
type = armnn::DataType::Float32;
break;