From 6f92c8e9f8bb38dcf5dccf8deeff5112ecd8e37c Mon Sep 17 00:00:00 2001 From: Nikhil Raj Date: Wed, 22 Nov 2023 11:41:15 +0000 Subject: Update Doxygen for 23.11 Signed-off-by: Nikhil Raj Change-Id: I47cd933f5002cb94a73aa97689d7b3d9c93cb849 --- 23.11/_resolve_type_8hpp_source.html | 219 +++++++++++++++++++++++++++++++++++ 1 file changed, 219 insertions(+) create mode 100644 23.11/_resolve_type_8hpp_source.html (limited to '23.11/_resolve_type_8hpp_source.html') diff --git a/23.11/_resolve_type_8hpp_source.html b/23.11/_resolve_type_8hpp_source.html new file mode 100644 index 0000000000..7f011547dc --- /dev/null +++ b/23.11/_resolve_type_8hpp_source.html @@ -0,0 +1,219 @@ + + + + + + + + +Arm NN: src/armnn/ResolveType.hpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  23.11 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
ResolveType.hpp
+
+
+Go to the documentation of this file.
1 //
+
2 // Copyright © 2017 Arm Ltd and Contributors. All rights reserved.
+
3 // SPDX-License-Identifier: MIT
+
4 //
+
5 
+
6 #pragma once
+
7 
+
8 #include "armnn/Types.hpp"
+
9 #include "BFloat16.hpp"
+
10 #include "Half.hpp"
+
11 
+
12 namespace armnn
+
13 {
+
14 
+
15 template<DataType DT>
+ +
17 
+
18 template <>
+ +
20 {
+
21  using Type = Half;
+
22 };
+
23 
+
24 template<>
+ +
26 {
+
27  using Type = float;
+
28 };
+
29 
+
30 template<>
+ +
32 {
+
33  using Type = uint8_t;
+
34 };
+
35 
+
36 template<>
+ +
38 {
+
39  using Type = int8_t;
+
40 };
+
41 
+
42 template<>
+ +
44 {
+
45  using Type = int8_t;
+
46 };
+
47 
+
48 template<>
+ +
50 {
+
51  using Type = int16_t;
+
52 };
+
53 
+
54 template<>
+ +
56 {
+
57  using Type = int32_t;
+
58 };
+
59 
+
60 template<>
+ +
62 {
+
63  using Type = int64_t;
+
64 };
+
65 
+
66 template<>
+ +
68 {
+
69  using Type = uint8_t;
+
70 };
+
71 
+
72 template<>
+ +
74 {
+
75  using Type = BFloat16;
+
76 };
+
77 
+
78 template<DataType DT>
+ +
80 
+
81 } //namespace armnn
+
+
+ + + + + + + + + +
half_float::half Half
Definition: Half.hpp:22
+ + +
DataType
Definition: Types.hpp:48
+
typename ResolveTypeImpl< DT >::Type ResolveType
Definition: ResolveType.hpp:79
+ + + + + + + + +
Copyright (c) 2021 ARM Limited and Contributors.
+ + + + + + + + -- cgit v1.2.1