blob: 89725c165aed2e53749c8a781c8c0b580793f0d3 [file] [log] [blame]
David Beck9df2d952018-10-10 15:11:44 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5#pragma once
6
David Beck3e9e1152018-10-17 14:17:50 +01007#include <ostream>
David Beck9df2d952018-10-10 15:11:44 +01008#include <set>
9#include <unordered_set>
10#include <string>
11#include <memory>
David Beck3e9e1152018-10-17 14:17:50 +010012#include <vector>
David Beck9df2d952018-10-10 15:11:44 +010013
14namespace armnn
15{
16
17//
18// The Compute enum is now deprecated and it is now
David Becke6488712018-10-16 11:32:20 +010019// being replaced by BackendId
David Beck9df2d952018-10-10 15:11:44 +010020//
21enum class Compute
22{
Matteo Martincigh992d6dc2019-01-10 17:34:20 +000023 Undefined = 0,
David Beck9df2d952018-10-10 15:11:44 +010024 /// CPU Execution: Reference C++ kernels
Matteo Martincigh992d6dc2019-01-10 17:34:20 +000025 CpuRef = 1,
David Beck9df2d952018-10-10 15:11:44 +010026 /// CPU Execution: NEON: ArmCompute
Matteo Martincigh992d6dc2019-01-10 17:34:20 +000027 CpuAcc = 2,
David Beck9df2d952018-10-10 15:11:44 +010028 /// GPU Execution: OpenCL: ArmCompute
Matteo Martincigh992d6dc2019-01-10 17:34:20 +000029 GpuAcc = 3
David Beck9df2d952018-10-10 15:11:44 +010030};
31
David Becke6488712018-10-16 11:32:20 +010032/// Deprecated function that will be removed together with
33/// the Compute enum
David Beck9df2d952018-10-10 15:11:44 +010034constexpr char const* GetComputeDeviceAsCString(Compute compute)
35{
36 switch (compute)
37 {
38 case armnn::Compute::CpuRef: return "CpuRef";
39 case armnn::Compute::CpuAcc: return "CpuAcc";
40 case armnn::Compute::GpuAcc: return "GpuAcc";
41 default: return "Unknown";
42 }
43}
44
David Becke6488712018-10-16 11:32:20 +010045/// Deprecated function that will be removed together with
46/// the Compute enum
David Beck9df2d952018-10-10 15:11:44 +010047inline std::ostream& operator<<(std::ostream& os, const std::vector<Compute>& compute)
48{
Matteo Martincigh992d6dc2019-01-10 17:34:20 +000049 for (const Compute& comp : compute)
50 {
David Beck9df2d952018-10-10 15:11:44 +010051 os << GetComputeDeviceAsCString(comp) << " ";
52 }
53 return os;
54}
55
David Becke6488712018-10-16 11:32:20 +010056/// Deprecated function that will be removed together with
57/// the Compute enum
David Beck9df2d952018-10-10 15:11:44 +010058inline std::ostream& operator<<(std::ostream& os, const std::set<Compute>& compute)
59{
Matteo Martincigh992d6dc2019-01-10 17:34:20 +000060 for (const Compute& comp : compute)
61 {
David Beck9df2d952018-10-10 15:11:44 +010062 os << GetComputeDeviceAsCString(comp) << " ";
63 }
64 return os;
65}
66
David Becke6488712018-10-16 11:32:20 +010067/// Deprecated function that will be removed together with
68/// the Compute enum
David Beck9df2d952018-10-10 15:11:44 +010069inline std::ostream& operator<<(std::ostream& os, const Compute& compute)
70{
71 os << GetComputeDeviceAsCString(compute);
72 return os;
73}
74
75class BackendId final
76{
77public:
Matteo Martincigh992d6dc2019-01-10 17:34:20 +000078 BackendId() : m_Id(GetComputeDeviceAsCString(Compute::Undefined)) {}
David Beck9df2d952018-10-10 15:11:44 +010079 BackendId(const std::string& id) : m_Id{id} {}
80 BackendId(const char* id) : m_Id{id} {}
David Becke6488712018-10-16 11:32:20 +010081
82 /// Deprecated function that will be removed together with
83 /// the Compute enum
David Beck9df2d952018-10-10 15:11:44 +010084 BackendId(Compute compute) : m_Id{GetComputeDeviceAsCString(compute)} {}
85
86 operator std::string() const { return m_Id; }
87
88 BackendId& operator=(const std::string& other)
89 {
90 m_Id = other;
91 return *this;
92 }
93
David Becke6488712018-10-16 11:32:20 +010094 /// Deprecated function that will be removed together with
95 /// the Compute enum
David Beck9df2d952018-10-10 15:11:44 +010096 BackendId& operator=(Compute compute)
97 {
98 BackendId temp{compute};
99 std::swap(temp.m_Id, m_Id);
100 return *this;
101 }
102
103 bool operator==(const BackendId& other) const
104 {
105 return m_Id == other.m_Id;
106 }
107
David Beck33f0ae02018-10-18 15:13:56 +0100108 // comparison against objects from which the
109 // BackendId can be constructed
110 template <typename O>
111 bool operator==(const O& other) const
112 {
113 BackendId temp{other};
114 return *this == temp;
115 }
116
117 template <typename O>
118 bool operator!=(const O& other) const
119 {
120 return !(*this == other);
121 }
122
David Beck9df2d952018-10-10 15:11:44 +0100123 bool operator<(const BackendId& other) const
124 {
125 return m_Id < other.m_Id;
126 }
127
Matteo Martincighadddddb2019-01-24 14:06:23 +0000128 bool IsCpuRef() const { return m_Id == GetComputeDeviceAsCString(Compute::CpuRef); }
129
David Beck9df2d952018-10-10 15:11:44 +0100130 const std::string& Get() const { return m_Id; }
131
132private:
David Beck9df2d952018-10-10 15:11:44 +0100133 std::string m_Id;
134};
135
Matteo Martincigh992d6dc2019-01-10 17:34:20 +0000136} // namespace armnn
David Beckf0b48452018-10-19 15:20:56 +0100137
David Beck9df2d952018-10-10 15:11:44 +0100138namespace std
139{
140
141// make BackendId compatible with std hashtables by reusing the hash
Rob Hughes0214d7e2018-11-21 09:55:52 +0000142// function for strings.
143// Note this must come *before* the first use of unordered_set<BackendId>.
David Beck9df2d952018-10-10 15:11:44 +0100144template <>
145struct hash<armnn::BackendId>
146{
147 std::size_t operator()(const armnn::BackendId& id) const
148 {
149 std::hash<std::string> hasher;
150 return hasher(id.Get());
151 }
152};
153
154} // namespace std
Rob Hughes0214d7e2018-11-21 09:55:52 +0000155
156namespace armnn
157{
158
159inline std::ostream& operator<<(std::ostream& os, const BackendId& id)
160{
161 os << id.Get();
162 return os;
163}
164
165template <template <typename...> class TContainer, typename... TContainerTemplateArgs>
166std::ostream& operator<<(std::ostream& os,
Matteo Martincigh992d6dc2019-01-10 17:34:20 +0000167 const TContainer<BackendId, TContainerTemplateArgs...>& ids)
Rob Hughes0214d7e2018-11-21 09:55:52 +0000168{
169 os << '[';
170 for (const auto& id : ids) { os << id << " "; }
171 os << ']';
172 return os;
173}
174
Matteo Martincigh49124022019-01-11 13:25:59 +0000175using BackendIdVector = std::vector<BackendId>;
176using BackendIdSet = std::unordered_set<BackendId>;
Rob Hughes0214d7e2018-11-21 09:55:52 +0000177
178} // namespace armnn
179