aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/Half.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnnUtils/Half.hpp')
-rw-r--r--src/armnnUtils/Half.hpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/armnnUtils/Half.hpp b/src/armnnUtils/Half.hpp
new file mode 100644
index 0000000000..c4b47a3609
--- /dev/null
+++ b/src/armnnUtils/Half.hpp
@@ -0,0 +1,35 @@
+//
+// Copyright © 2017 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#pragma once
+
+#include <type_traits>
+#include <half/half.hpp>
+
+namespace armnn
+{
+ using Half = half_float::half; //import half float implementation
+} //namespace armnn
+
+
+namespace std
+{
+
+template<>
+struct is_floating_point<armnn::Half>
+ : integral_constant< bool, true >
+{};
+
+template<>
+struct is_floating_point<const armnn::Half>
+ : integral_constant< bool, true >
+{};
+
+template<>
+struct is_floating_point<volatile armnn::Half>
+ : integral_constant< bool, true >
+{};
+
+} //namespace std \ No newline at end of file