aboutsummaryrefslogtreecommitdiff
path: root/src/armnnUtils/Half.hpp
blob: e39968f54d5c2e84ac39a219cffc30aa305304f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//
// Copyright © 2017 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

#include <type_traits>

// Set style to round to nearest
#ifndef HALF_ROUND_STYLE
    #define HALF_ROUND_STYLE 1
#endif
#ifndef HALF_ROUND_TIES_TO_EVEN
    #define HALF_ROUND_TIES_TO_EVEN 1
#endif

#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