blob: a18adbac5ab9ad19192add06180209962d5b99d3 [file] [log] [blame]
David Becke97c6e02018-10-03 13:09:28 +01001//
Matthew Sloyan21a6a1a2022-06-30 17:13:04 +01002// Copyright © 2022 Arm Ltd and Contributors. All rights reserved.
David Becke97c6e02018-10-03 13:09:28 +01003// SPDX-License-Identifier: MIT
4//
Matteo Martincighd0dc7702019-08-01 17:09:03 +01005
David Becke97c6e02018-10-03 13:09:28 +01006#pragma once
7
David Beck9efb57d2018-11-05 13:40:33 +00008#include <armnn/Types.hpp>
David Beck1b61be52018-11-08 09:19:14 +00009#include <armnn/IRuntime.hpp>
Matteo Martincighfc598e12019-05-14 10:36:13 +010010#include <armnn/Deprecated.hpp>
Matteo Martincigh49124022019-01-11 13:25:59 +000011
Matthew Sloyan21a6a1a2022-06-30 17:13:04 +010012#include <ExecutionData.hpp>
Derek Lambertiff05cc52019-04-26 13:05:17 +010013#include <ISubgraphViewConverter.hpp>
Matthew Sloyan21a6a1a2022-06-30 17:13:04 +010014#include <WorkingMemDescriptor.hpp>
Matteo Martincigh49124022019-01-11 13:25:59 +000015
Francis Murtaghe8d7ccb2021-10-14 17:30:24 +010016#include <armnn/backends/IBackendContext.hpp>
17#include <armnn/backends/IMemoryManager.hpp>
18#include <armnn/backends/ITensorHandleFactory.hpp>
19#include <armnn/backends/OptimizationViews.hpp>
Francis Murtagha49ff082022-01-17 17:08:01 +000020#include <armnn/backends/SubgraphView.hpp>
Jim Flynn27761832022-03-20 21:52:17 +000021
22#include <client/include/backends/IBackendProfiling.hpp>
23#include <client/include/backends/IBackendProfilingContext.hpp>
Derek Lambertic2fe5fb2019-05-08 10:23:08 +010024
David Beck263e3492018-11-09 14:46:40 +000025#include <vector>
Matteo Martincighd0dc7702019-08-01 17:09:03 +010026#include <memory>
David Becke97c6e02018-10-03 13:09:28 +010027
28namespace armnn
29{
David Beck29c75de2018-10-23 13:35:58 +010030class IWorkloadFactory;
Aron Virginas-Tar56055192018-11-12 18:10:43 +000031class IMemoryManager;
David Beck111b5d92018-11-12 14:59:37 +000032class ILayerSupport;
David Becke97c6e02018-10-03 13:09:28 +010033
Matteo Martincighac60d282019-07-25 15:25:44 +010034struct BackendVersion
35{
36 uint32_t m_Major;
37 uint32_t m_Minor;
38
Matteo Martincighd0dc7702019-08-01 17:09:03 +010039 constexpr BackendVersion()
Matteo Martincighac60d282019-07-25 15:25:44 +010040 : m_Major(0)
41 , m_Minor(0)
42 {}
Matteo Martincighd0dc7702019-08-01 17:09:03 +010043 constexpr BackendVersion(uint32_t major, uint32_t minor)
Matteo Martincighac60d282019-07-25 15:25:44 +010044 : m_Major(major)
45 , m_Minor(minor)
46 {}
47
48 bool operator==(const BackendVersion& other) const
49 {
50 return this == &other ||
51 (this->m_Major == other.m_Major &&
52 this->m_Minor == other.m_Minor);
53 }
54
55 bool operator<=(const BackendVersion& other) const
56 {
57 return this->m_Major < other.m_Major ||
58 (this->m_Major == other.m_Major &&
59 this->m_Minor <= other.m_Minor);
60 }
Jan Eilers15fcc7e2021-07-14 13:50:15 +010061
62 bool operator>=(const BackendVersion& other) const
63 {
64 return this->m_Major > other.m_Major ||
65 (this->m_Major == other.m_Major &&
66 this->m_Minor >= other.m_Minor);
67 }
Matteo Martincighac60d282019-07-25 15:25:44 +010068};
69
70inline std::ostream& operator<<(std::ostream& os, const BackendVersion& backendVersion)
71{
72 os << "[" << backendVersion.m_Major << "." << backendVersion.m_Minor << "]";
73
74 return os;
75}
76
David Becke97c6e02018-10-03 13:09:28 +010077class IBackendInternal : public IBackend
78{
79protected:
Ryan OShea2bbfaa72020-02-12 16:15:27 +000080 /// Creation must be done through a specific
81 /// backend interface.
David Beck6b779f02018-10-09 17:20:21 +010082 IBackendInternal() = default;
David Becke97c6e02018-10-03 13:09:28 +010083
84public:
Ryan OShea2bbfaa72020-02-12 16:15:27 +000085 /// Allow backends created by the factory function
86 /// to be destroyed through IBackendInternal.
David Beck29c75de2018-10-23 13:35:58 +010087 ~IBackendInternal() override = default;
88
89 using IWorkloadFactoryPtr = std::unique_ptr<IWorkloadFactory>;
David Beck1b61be52018-11-08 09:19:14 +000090 using IBackendContextPtr = std::unique_ptr<IBackendContext>;
Ryan OShea2bbfaa72020-02-12 16:15:27 +000091 /// This is the bridge between backend and backend profiling we'll keep it in the backend namespace.
Cathal Corbett5aa9fd72022-02-25 15:33:28 +000092 using IBackendProfilingContextPtr = std::shared_ptr<arm::pipe::IBackendProfilingContext>;
93 using IBackendProfilingPtr = std::unique_ptr<arm::pipe::IBackendProfiling>;
David Beck111b5d92018-11-12 14:59:37 +000094 using ILayerSupportSharedPtr = std::shared_ptr<ILayerSupport>;
David Beck1b61be52018-11-08 09:19:14 +000095
Sadik Armagan045f6be2020-09-10 13:37:32 +010096 using IBackendSpecificModelContextPtr = std::shared_ptr<IBackendModelContext>;
97
Aron Virginas-Tar56055192018-11-12 18:10:43 +000098 using IMemoryManagerUniquePtr = std::unique_ptr<IMemoryManager>;
99 using IMemoryManagerSharedPtr = std::shared_ptr<IMemoryManager>;
100
Matteo Martincighd0dc7702019-08-01 17:09:03 +0100101 virtual IMemoryManagerUniquePtr CreateMemoryManager() const;
Aron Virginas-Tar56055192018-11-12 18:10:43 +0000102
103 virtual IWorkloadFactoryPtr CreateWorkloadFactory(
104 const IMemoryManagerSharedPtr& memoryManager = nullptr) const = 0;
105
Narumol Prangnawarat11bd2612019-08-13 10:26:53 +0100106 virtual IWorkloadFactoryPtr CreateWorkloadFactory(
107 class TensorHandleFactoryRegistry& tensorHandleFactoryRegistry) const;
108
Sadik Armagan04a72972020-09-14 15:44:18 +0100109 virtual IWorkloadFactoryPtr CreateWorkloadFactory(
110 const IMemoryManagerSharedPtr& memoryManager,
111 const ModelOptions& modelOptions) const;
112
113 virtual IWorkloadFactoryPtr CreateWorkloadFactory(
114 class TensorHandleFactoryRegistry& tensorHandleFactoryRegistry,
115 const ModelOptions& modelOptions) const;
116
Narumol Prangnawarate5f0b242021-05-07 17:52:36 +0100117 virtual IWorkloadFactoryPtr CreateWorkloadFactory(
118 class TensorHandleFactoryRegistry& tensorHandleFactoryRegistry,
119 const ModelOptions& modelOptions,
120 MemorySourceFlags inputFlags,
121 MemorySourceFlags outputFlags) const;
122
Matthew Bentham9a61fa62020-02-04 10:03:55 +0000123 /// Create the runtime context of the backend
124 ///
125 /// Implementations may return a default-constructed IBackendContextPtr if
126 /// no context is needed at runtime.
127 /// Implementations must throw BackendUnavailableException if the backend
128 /// cannot be used (for example, necessary accelerator hardware is not present).
129 /// The default implementation always returns a default-constructed pointer.
Matteo Martincighd0dc7702019-08-01 17:09:03 +0100130 virtual IBackendContextPtr CreateBackendContext(const IRuntime::CreationOptions&) const;
Aron Virginas-Tar56055192018-11-12 18:10:43 +0000131
Sadik Armagan045f6be2020-09-10 13:37:32 +0100132 virtual IBackendSpecificModelContextPtr CreateBackendSpecificModelContext(const ModelOptions& modelOptions) const;
133
Matthew Bentham9a61fa62020-02-04 10:03:55 +0000134 /// Create context specifically used for profiling interaction from backends.
Colm Donelane49755b2020-01-29 15:22:43 +0000135 virtual IBackendProfilingContextPtr CreateBackendProfilingContext(const IRuntime::CreationOptions& creationOptions,
Colm Donelan1aff3932020-02-05 17:48:59 +0000136 IBackendProfilingPtr& backendProfiling);
Colm Donelane49755b2020-01-29 15:22:43 +0000137
David Beck111b5d92018-11-12 14:59:37 +0000138 virtual ILayerSupportSharedPtr GetLayerSupport() const = 0;
Matteo Martincighadddddb2019-01-24 14:06:23 +0000139
Sadik Armagana25886e2020-09-15 17:17:08 +0100140 virtual ILayerSupportSharedPtr GetLayerSupport(const ModelOptions& modelOptions) const;
Sadik Armagan045f6be2020-09-10 13:37:32 +0100141
Matteo Martincighd0dc7702019-08-01 17:09:03 +0100142 virtual OptimizationViews OptimizeSubgraphView(const SubgraphView& subgraph) const;
Matteo Martincighfc598e12019-05-14 10:36:13 +0100143
Mike Kelly07810fc2020-11-12 10:58:48 +0000144 virtual OptimizationViews OptimizeSubgraphView(const SubgraphView& subgraph,
145 const ModelOptions& modelOptions) const;
146
Matteo Martincighd0dc7702019-08-01 17:09:03 +0100147 bool SupportsTensorAllocatorAPI() const;
Derek Lambertic2fe5fb2019-05-08 10:23:08 +0100148
Matteo Martincighd0dc7702019-08-01 17:09:03 +0100149 ITensorHandleFactory::FactoryId GetBackwardCompatibleFavoriteHandleFactory();
Derek Lamberti84da38b2019-06-13 11:40:08 +0100150
151 /// (Optional) Returns a vector of supported TensorHandleFactory ids in preference order.
Matteo Martincighd0dc7702019-08-01 17:09:03 +0100152 virtual std::vector<ITensorHandleFactory::FactoryId> GetHandleFactoryPreferences() const;
Derek Lamberti84da38b2019-06-13 11:40:08 +0100153
154 /// (Optional) Register TensorHandleFactories
155 /// Either this method or CreateMemoryManager() and
156 /// IWorkloadFactory::CreateTensor()/IWorkloadFactory::CreateSubtensor() methods must be implemented.
Derek Lamberti901ea112019-12-10 22:07:09 +0000157 virtual void RegisterTensorHandleFactories(class TensorHandleFactoryRegistry& /*registry*/) {}
Matteo Martincighac60d282019-07-25 15:25:44 +0100158
Narumol Prangnawarate5f0b242021-05-07 17:52:36 +0100159 /// (Optional) Register TensorHandleFactories
160 /// Either this method or CreateMemoryManager() and
161 /// IWorkloadFactory::CreateTensor()/IWorkloadFactory::CreateSubtensor() methods must be implemented.
162 virtual void RegisterTensorHandleFactories(class TensorHandleFactoryRegistry& registry,
163 MemorySourceFlags inputFlags,
164 MemorySourceFlags outputFlags);
165
Matteo Martincighac60d282019-07-25 15:25:44 +0100166 /// Returns the version of the Backend API
Francis Murtagh72930662021-08-17 16:46:41 +0100167 static constexpr BackendVersion GetApiVersion() { return BackendVersion(1, 0); }
Sadik Armaganf0a6dec2021-03-25 07:46:55 +0000168
Finn Williamsb9af86e2021-05-26 18:38:12 +0100169 /// Returns a BackendCapability if the backend lists the capability
170 /// The BackendCapability must then be inspected to check whether or not that BackendCapability is supported
171 /// Otherwise returns an EmptyOptional if the BackendCapability is unlisted
172 virtual BackendCapabilities GetCapabilities() const
173 {
174 return BackendCapabilities("IBackendInternal NullCapabilities");
175 };
176
Jan Eilers15fcc7e2021-07-14 13:50:15 +0100177 /// Signals the backend to use a custom memory allocator provided by the user
178 ///
Jan Eilersc1c872f2021-07-22 13:17:04 +0100179 /// \param allocator - a pointer to the provided ICustomAllocator to use with this backend
Jan Eilers15fcc7e2021-07-14 13:50:15 +0100180 /// \param errMsg - Optional string variable to return error messages
181 /// \return - Returns true if switching to custom allocator was successful
Jan Eilersc1c872f2021-07-22 13:17:04 +0100182 virtual bool UseCustomMemoryAllocator(std::shared_ptr<ICustomAllocator> allocator,
183 armnn::Optional<std::string&> errMsg)
Jan Eilers15fcc7e2021-07-14 13:50:15 +0100184 {
Jan Eilersc1c872f2021-07-22 13:17:04 +0100185 IgnoreUnused(allocator);
Jan Eilers15fcc7e2021-07-14 13:50:15 +0100186 if (errMsg)
187 {
188 std::stringstream message;
189 message << "The backend " << GetId() << " doesn't support using a custom allocator. This error might"
190 " be related with the protected mode if the backend doesn't"
191 " fully support it.";
192
193 errMsg.value() = message.str();
194 }
195 return false;
196 }
Francis Murtaghe8d7ccb2021-10-14 17:30:24 +0100197
198 /// Returns the default memory allocator for the backend
199 ///
200 /// \return - Returns unique pointer to the Default Allocator of the Backend
201 virtual std::unique_ptr<ICustomAllocator> GetDefaultAllocator() const
202 {
203 throw armnn::Exception("GetDefaultAllocator: Function has not been implemented in backend.");
204 }
Sadik Armaganb7851f92021-10-06 16:37:02 +0100205
206 /// Returns the number of files cached if backend supports caching
207 ///
208 /// \return - Returns 0 if backend does not support caching otherwise number of files cached
209 virtual unsigned int GetNumberOfCacheFiles() const { return 0; }
Matthew Sloyan21a6a1a2022-06-30 17:13:04 +0100210
211 /// Returns ExecutionData for the backend
212 ///
213 /// \param workingMemDescriptor - Vectors of input and output TensorHandles for a layer
214 /// \return - Returns backend specific ExecutionData generated for a layer
215 virtual ExecutionData CreateExecutionData(WorkingMemDescriptor& workingMemDescriptor) const
216 {
217 IgnoreUnused(workingMemDescriptor);
218 throw armnn::Exception("CreateExecutionData: Function has not been implemented in backend.");
219 };
220
221 /// Update the ExecutionData for a layer. It is used to swap in pre-imported tensor handles
222 ///
223 /// \param executionData - Backend specific ExecutionData generated for a layer
224 /// \param workingMemDescriptor - Vectors of input and output TensorHandles for a layer
225 virtual void UpdateExecutionData(ExecutionData& executionData, WorkingMemDescriptor& workingMemDescriptor) const
226 {
227 IgnoreUnused(executionData);
228 IgnoreUnused(workingMemDescriptor);
229 throw armnn::Exception("UpdateExecutionData: Function has not been implemented in backend.");
230 };
David Becke97c6e02018-10-03 13:09:28 +0100231};
232
David Beck29c75de2018-10-23 13:35:58 +0100233using IBackendInternalUniquePtr = std::unique_ptr<IBackendInternal>;
234
David Becke97c6e02018-10-03 13:09:28 +0100235} // namespace armnn