aboutsummaryrefslogtreecommitdiff
path: root/Utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Utils.cpp')
-rw-r--r--Utils.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Utils.cpp b/Utils.cpp
index 2f9a4a34..8af12a32 100644
--- a/Utils.cpp
+++ b/Utils.cpp
@@ -226,6 +226,11 @@ void DumpTensor(const std::string& dumpDir,
dumpElementFunction = &DumpTensorElement<int32_t>;
break;
}
+ case armnn::DataType::Float16:
+ {
+ dumpElementFunction = &DumpTensorElement<armnn::Half>;
+ break;
+ }
default:
{
dumpElementFunction = nullptr;