aboutsummaryrefslogtreecommitdiff
path: root/src/armnn/Half.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/armnn/Half.hpp')
-rw-r--r--src/armnn/Half.hpp35
1 files changed, 0 insertions, 35 deletions
diff --git a/src/armnn/Half.hpp b/src/armnn/Half.hpp
deleted file mode 100644
index c4b47a3609..0000000000
--- a/src/armnn/Half.hpp
+++ /dev/null
@@ -1,35 +0,0 @@
-//
-// 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