blob: 7500e35897df74f4e1509ed78191ac388460f69f [file] [log] [blame]
David Becke97c6e02018-10-03 13:09:28 +01001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
3// 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
Derek Lambertiff05cc52019-04-26 13:05:17 +010012#include <ISubgraphViewConverter.hpp>
13#include <SubgraphView.hpp>
Derek Lamberti84da38b2019-06-13 11:40:08 +010014#include <optimizations/Optimization.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>
20#include <armnn/backends/profiling/IBackendProfiling.hpp>
21#include <armnn/backends/profiling/IBackendProfilingContext.hpp>
Derek Lambertic2fe5fb2019-05-08 10:23:08 +010022
David Beck263e3492018-11-09 14:46:40 +000023#include <vector>
Matteo Martincighd0dc7702019-08-01 17:09:03 +010024#include <memory>
David Becke97c6e02018-10-03 13:09:28 +010025
26namespace armnn
27{
David Beck29c75de2018-10-23 13:35:58 +010028class IWorkloadFactory;
Aron Virginas-Tar56055192018-11-12 18:10:43 +000029class IMemoryManager;
David Beck111b5d92018-11-12 14:59:37 +000030class ILayerSupport;
David Becke97c6e02018-10-03 13:09:28 +010031
Matteo Martincighac60d282019-07-25 15:25:44 +010032struct BackendVersion
33{
34 uint32_t m_Major;
35 uint32_t m_Minor;
36
Matteo Martincighd0dc7702019-08-01 17:09:03 +010037 constexpr BackendVersion()
Matteo Martincighac60d282019-07-25 15:25:44 +010038 : m_Major(0)
39 , m_Minor(0)
40 {}
Matteo Martincighd0dc7702019-08-01 17:09:03 +010041 constexpr BackendVersion(uint32_t major, uint32_t minor)
Matteo Martincighac60d282019-07-25 15:25:44 +010042 : m_Major(major)
43 , m_Minor(minor)
44 {}
45
46 bool operator==(const BackendVersion& other) const
47 {
48 return this == &other ||
49 (this->m_Major == other.m_Major &&
50 this->m_Minor == other.m_Minor);
51 }
52
53 bool operator<=(const BackendVersion& other) const
54 {
55 return this->m_Major < other.m_Major ||
56 (this->m_Major == other.m_Major &&
57 this->m_Minor <= other.m_Minor);
58 }
Jan Eilers15fcc7e2021-07-14 13:50:15 +010059
60 bool operator>=(const BackendVersion& other) const
61 {
62 return this->m_Major > other.m_Major ||
63 (this->m_Major == other.m_Major &&
64 this->m_Minor >= other.m_Minor);
65 }
Matteo Martincighac60d282019-07-25 15:25:44 +010066};
67
68inline std::ostream& operator<<(std::ostream& os, const BackendVersion& backendVersion)
69{
70 os << "[" << backendVersion.m_Major << "." << backendVersion.m_Minor << "]";
71
72 return os;
73}
74
David Becke97c6e02018-10-03 13:09:28 +010075class IBackendInternal : public IBackend
76{
77protected:
Ryan OShea2bbfaa72020-02-12 16:15:27 +000078 /// Creation must be done through a specific
79 /// backend interface.
David Beck6b779f02018-10-09 17:20:21 +010080 IBackendInternal() = default;
David Becke97c6e02018-10-03 13:09:28 +010081
82public:
Ryan OShea2bbfaa72020-02-12 16:15:27 +000083 /// Allow backends created by the factory function
84 /// to be destroyed through IBackendInternal.
David Beck29c75de2018-10-23 13:35:58 +010085 ~IBackendInternal() override = default;
86
87 using IWorkloadFactoryPtr = std::unique_ptr<IWorkloadFactory>;
David Beck1b61be52018-11-08 09:19:14 +000088 using IBackendContextPtr = std::unique_ptr<IBackendContext>;
Ryan OShea2bbfaa72020-02-12 16:15:27 +000089 /// This is the bridge between backend and backend profiling we'll keep it in the backend namespace.
Colm Donelan1aff3932020-02-05 17:48:59 +000090 using IBackendProfilingContextPtr = std::shared_ptr<armnn::profiling::IBackendProfilingContext>;
91 using IBackendProfilingPtr = std::unique_ptr<armnn::profiling::IBackendProfiling>;
David Beck263e3492018-11-09 14:46:40 +000092 using OptimizationPtr = std::unique_ptr<Optimization>;
93 using Optimizations = std::vector<OptimizationPtr>;
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
Sadik Armaganf0a6dec2021-03-25 07:46:55 +0000177 /// Returns true if backend support the capability false otherwise
Jan Eilers1b2654f2021-09-24 15:45:46 +0100178 ARMNN_DEPRECATED_MSG_REMOVAL_DATE("This function has been deprecated in favour of GetCapability", "22.05")
Sadik Armaganf0a6dec2021-03-25 07:46:55 +0000179 virtual bool HasCapability(BackendCapability /*capabilityClass*/) const { return false; }
Jan Eilers15fcc7e2021-07-14 13:50:15 +0100180
181 /// Signals the backend to use a custom memory allocator provided by the user
182 ///
Jan Eilersc1c872f2021-07-22 13:17:04 +0100183 /// \param allocator - a pointer to the provided ICustomAllocator to use with this backend
Jan Eilers15fcc7e2021-07-14 13:50:15 +0100184 /// \param errMsg - Optional string variable to return error messages
185 /// \return - Returns true if switching to custom allocator was successful
Jan Eilersc1c872f2021-07-22 13:17:04 +0100186 virtual bool UseCustomMemoryAllocator(std::shared_ptr<ICustomAllocator> allocator,
187 armnn::Optional<std::string&> errMsg)
Jan Eilers15fcc7e2021-07-14 13:50:15 +0100188 {
Jan Eilersc1c872f2021-07-22 13:17:04 +0100189 IgnoreUnused(allocator);
Jan Eilers15fcc7e2021-07-14 13:50:15 +0100190 if (errMsg)
191 {
192 std::stringstream message;
193 message << "The backend " << GetId() << " doesn't support using a custom allocator. This error might"
194 " be related with the protected mode if the backend doesn't"
195 " fully support it.";
196
197 errMsg.value() = message.str();
198 }
199 return false;
200 }
Francis Murtaghe8d7ccb2021-10-14 17:30:24 +0100201
202 /// Returns the default memory allocator for the backend
203 ///
204 /// \return - Returns unique pointer to the Default Allocator of the Backend
205 virtual std::unique_ptr<ICustomAllocator> GetDefaultAllocator() const
206 {
207 throw armnn::Exception("GetDefaultAllocator: Function has not been implemented in backend.");
208 }
David Becke97c6e02018-10-03 13:09:28 +0100209};
210
David Beck29c75de2018-10-23 13:35:58 +0100211using IBackendInternalUniquePtr = std::unique_ptr<IBackendInternal>;
212
David Becke97c6e02018-10-03 13:09:28 +0100213} // namespace armnn