blob: dbdd4097842baccb992107d59c2bff107da36ce3 [file] [log] [blame]
telsoa014fcda012018-03-09 14:13:49 +00001//
2// Copyright © 2017 Arm Ltd. All rights reserved.
David Beckecb56cd2018-09-05 12:52:57 +01003// SPDX-License-Identifier: MIT
telsoa014fcda012018-03-09 14:13:49 +00004//
5#include "Runtime.hpp"
6
David Beck056be3c2018-10-22 13:16:00 +01007#include <armnn/Version.hpp>
Matteo Martincighc601aa62019-10-29 15:03:22 +00008#include <armnn/BackendRegistry.hpp>
Matthew Benthamf48afc62020-01-15 17:55:08 +00009#include <armnn/Logging.hpp>
Matteo Martincighe54aa062019-08-05 14:12:11 +010010
Matteo Martincighe5b8eb92019-11-28 15:45:42 +000011#include <armnn/backends/IBackendContext.hpp>
Matteo Martincighe54aa062019-08-05 14:12:11 +010012#include <backendsCommon/DynamicBackendUtils.hpp>
Jan Eilersbb446e52020-04-02 13:56:54 +010013#include <armnn/utility/PolymorphicDowncast.hpp>
telsoa014fcda012018-03-09 14:13:49 +000014
surmeh013537c2c2018-05-18 16:31:43 +010015#include <iostream>
16
Colm Donelan1aff3932020-02-05 17:48:59 +000017#include <backends/BackendProfiling.hpp>
telsoa014fcda012018-03-09 14:13:49 +000018
19using namespace armnn;
20using namespace std;
21
22namespace armnn
23{
24
25IRuntime* IRuntime::CreateRaw(const CreationOptions& options)
26{
27 return new Runtime(options);
28}
29
30IRuntimePtr IRuntime::Create(const CreationOptions& options)
31{
32 return IRuntimePtr(CreateRaw(options), &IRuntime::Destroy);
33}
34
35void IRuntime::Destroy(IRuntime* runtime)
36{
Jan Eilersbb446e52020-04-02 13:56:54 +010037 delete PolymorphicDowncast<Runtime*>(runtime);
telsoa014fcda012018-03-09 14:13:49 +000038}
39
40int Runtime::GenerateNetworkId()
41{
42 return m_NetworkIdCounter++;
43}
44
45Status Runtime::LoadNetwork(NetworkId& networkIdOut, IOptimizedNetworkPtr inNetwork)
46{
telsoa01c577f2c2018-08-31 09:22:23 +010047 std::string ignoredErrorMessage;
48 return LoadNetwork(networkIdOut, std::move(inNetwork), ignoredErrorMessage);
49}
50
51Status Runtime::LoadNetwork(NetworkId& networkIdOut,
52 IOptimizedNetworkPtr inNetwork,
David Monahan4f1e8e42019-09-04 09:22:10 +010053 std::string& errorMessage)
54{
55 INetworkProperties networkProperties;
56 return LoadNetwork(networkIdOut, std::move(inNetwork), errorMessage, networkProperties);
57}
58
59Status Runtime::LoadNetwork(NetworkId& networkIdOut,
60 IOptimizedNetworkPtr inNetwork,
61 std::string& errorMessage,
62 const INetworkProperties& networkProperties)
telsoa01c577f2c2018-08-31 09:22:23 +010063{
telsoa014fcda012018-03-09 14:13:49 +000064 IOptimizedNetwork* rawNetwork = inNetwork.release();
David Beck1b61be52018-11-08 09:19:14 +000065
66 networkIdOut = GenerateNetworkId();
67
68 for (auto&& context : m_BackendContexts)
69 {
70 context.second->BeforeLoadNetwork(networkIdOut);
71 }
72
telsoa014fcda012018-03-09 14:13:49 +000073 unique_ptr<LoadedNetwork> loadedNetwork = LoadedNetwork::MakeLoadedNetwork(
Jan Eilersbb446e52020-04-02 13:56:54 +010074 std::unique_ptr<OptimizedNetwork>(PolymorphicDowncast<OptimizedNetwork*>(rawNetwork)),
David Monahan4f1e8e42019-09-04 09:22:10 +010075 errorMessage,
Sadik Armagan3184c902020-03-18 10:57:30 +000076 networkProperties,
77 m_ProfilingService);
telsoa014fcda012018-03-09 14:13:49 +000078
79 if (!loadedNetwork)
80 {
81 return Status::Failure;
82 }
83
telsoa01c577f2c2018-08-31 09:22:23 +010084 {
85 std::lock_guard<std::mutex> lockGuard(m_Mutex);
86
87 // Stores the network
88 m_LoadedNetworks[networkIdOut] = std::move(loadedNetwork);
89 }
telsoa014fcda012018-03-09 14:13:49 +000090
David Beck1b61be52018-11-08 09:19:14 +000091 for (auto&& context : m_BackendContexts)
92 {
93 context.second->AfterLoadNetwork(networkIdOut);
94 }
95
Sadik Armagan3184c902020-03-18 10:57:30 +000096 if (m_ProfilingService.IsProfilingEnabled())
Keith Davise394bd92019-12-02 15:12:19 +000097 {
Sadik Armagan3184c902020-03-18 10:57:30 +000098 m_ProfilingService.IncrementCounterValue(armnn::profiling::NETWORK_LOADS);
Keith Davise394bd92019-12-02 15:12:19 +000099 }
100
telsoa014fcda012018-03-09 14:13:49 +0000101 return Status::Success;
telsoa014fcda012018-03-09 14:13:49 +0000102}
103
104Status Runtime::UnloadNetwork(NetworkId networkId)
105{
David Beck1b61be52018-11-08 09:19:14 +0000106 bool unloadOk = true;
107 for (auto&& context : m_BackendContexts)
David Beck9efb57d2018-11-05 13:40:33 +0000108 {
David Beck1b61be52018-11-08 09:19:14 +0000109 unloadOk &= context.second->BeforeUnloadNetwork(networkId);
David Beck9efb57d2018-11-05 13:40:33 +0000110 }
David Beck1b61be52018-11-08 09:19:14 +0000111
112 if (!unloadOk)
113 {
Derek Lamberti08446972019-11-26 16:38:31 +0000114 ARMNN_LOG(warning) << "Runtime::UnloadNetwork(): failed to unload "
115 "network with ID:" << networkId << " because BeforeUnloadNetwork failed";
David Beck1b61be52018-11-08 09:19:14 +0000116 return Status::Failure;
117 }
David Beck9efb57d2018-11-05 13:40:33 +0000118
telsoa014fcda012018-03-09 14:13:49 +0000119 {
telsoa01c577f2c2018-08-31 09:22:23 +0100120 std::lock_guard<std::mutex> lockGuard(m_Mutex);
121
122 if (m_LoadedNetworks.erase(networkId) == 0)
123 {
Derek Lamberti08446972019-11-26 16:38:31 +0000124 ARMNN_LOG(warning) << "WARNING: Runtime::UnloadNetwork(): " << networkId << " not found!";
telsoa01c577f2c2018-08-31 09:22:23 +0100125 return Status::Failure;
126 }
Sadik Armagan3184c902020-03-18 10:57:30 +0000127
128 if (m_ProfilingService.IsProfilingEnabled())
Keith Davise394bd92019-12-02 15:12:19 +0000129 {
Sadik Armagan3184c902020-03-18 10:57:30 +0000130 m_ProfilingService.IncrementCounterValue(armnn::profiling::NETWORK_UNLOADS);
Keith Davise394bd92019-12-02 15:12:19 +0000131 }
David Beck1b61be52018-11-08 09:19:14 +0000132 }
David Beck9efb57d2018-11-05 13:40:33 +0000133
David Beck1b61be52018-11-08 09:19:14 +0000134 for (auto&& context : m_BackendContexts)
135 {
136 context.second->AfterUnloadNetwork(networkId);
telsoa01c577f2c2018-08-31 09:22:23 +0100137 }
138
Derek Lamberti08446972019-11-26 16:38:31 +0000139 ARMNN_LOG(debug) << "Runtime::UnloadNetwork(): Unloaded network with ID: " << networkId;
telsoa014fcda012018-03-09 14:13:49 +0000140 return Status::Success;
141}
142
telsoa01c577f2c2018-08-31 09:22:23 +0100143const std::shared_ptr<IProfiler> Runtime::GetProfiler(NetworkId networkId) const
144{
145 auto it = m_LoadedNetworks.find(networkId);
146 if (it != m_LoadedNetworks.end())
147 {
148 auto& loadedNetwork = it->second;
149 return loadedNetwork->GetProfiler();
150 }
151
152 return nullptr;
153}
154
Keith Davis33ed2212020-03-30 10:43:41 +0100155void Runtime::ReportStructure() // armnn::profiling::IProfilingService& profilingService as param
156{
157 // No-op for the time being, but this may be useful in future to have the profilingService available
158 // if (profilingService.IsProfilingEnabled()){}
159
160 LoadedNetworks::iterator it = m_LoadedNetworks.begin();
161 while (it != m_LoadedNetworks.end())
162 {
163 auto& loadedNetwork = it->second;
164 loadedNetwork->SendNetworkStructure();
165 // Increment the Iterator to point to next entry
166 it++;
167 }
168}
169
telsoa014fcda012018-03-09 14:13:49 +0000170Runtime::Runtime(const CreationOptions& options)
Keith Davis33ed2212020-03-30 10:43:41 +0100171 : m_NetworkIdCounter(0),
172 m_ProfilingService(*this)
telsoa014fcda012018-03-09 14:13:49 +0000173{
Derek Lamberti08446972019-11-26 16:38:31 +0000174 ARMNN_LOG(info) << "ArmNN v" << ARMNN_VERSION << "\n";
David Beck1b61be52018-11-08 09:19:14 +0000175
Keith Davis33ed2212020-03-30 10:43:41 +0100176 if ( options.m_ProfilingOptions.m_TimelineEnabled && !options.m_ProfilingOptions.m_EnableProfiling )
177 {
178 throw RuntimeException("It is not possible to enable timeline reporting without profiling being enabled");
179 }
180
Matteo Martincighe54aa062019-08-05 14:12:11 +0100181 // Load any available/compatible dynamic backend before the runtime
182 // goes through the backend registry
183 LoadDynamicBackends(options.m_DynamicBackendsPath);
184
Matthew Bentham9a61fa62020-02-04 10:03:55 +0000185 BackendIdSet supportedBackends;
David Beck1b61be52018-11-08 09:19:14 +0000186 for (const auto& id : BackendRegistryInstance().GetBackendIds())
187 {
188 // Store backend contexts for the supported ones
Matthew Bentham9a61fa62020-02-04 10:03:55 +0000189 try {
David Beck1b61be52018-11-08 09:19:14 +0000190 auto factoryFun = BackendRegistryInstance().GetFactory(id);
191 auto backend = factoryFun();
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100192 ARMNN_ASSERT(backend.get() != nullptr);
David Beck1b61be52018-11-08 09:19:14 +0000193
194 auto context = backend->CreateBackendContext(options);
195
196 // backends are allowed to return nullptrs if they
197 // don't wish to create a backend specific context
198 if (context)
199 {
200 m_BackendContexts.emplace(std::make_pair(id, std::move(context)));
201 }
Matthew Bentham9a61fa62020-02-04 10:03:55 +0000202 supportedBackends.emplace(id);
Colm Donelan1aff3932020-02-05 17:48:59 +0000203
204 unique_ptr<armnn::profiling::IBackendProfiling> profilingIface =
205 std::make_unique<armnn::profiling::BackendProfiling>(armnn::profiling::BackendProfiling(
Sadik Armagan3184c902020-03-18 10:57:30 +0000206 options, m_ProfilingService, id));
Colm Donelan1aff3932020-02-05 17:48:59 +0000207
208 // Backends may also provide a profiling context. Ask for it now.
209 auto profilingContext = backend->CreateBackendProfilingContext(options, profilingIface);
210 // Backends that don't support profiling will return a null profiling context.
211 if (profilingContext)
212 {
Finn Williamsfe5a24b2020-04-09 16:05:28 +0100213 // Pass the context onto the profiling service.
214 m_ProfilingService.AddBackendProfilingContext(id, profilingContext);
Colm Donelan1aff3932020-02-05 17:48:59 +0000215 }
David Beck1b61be52018-11-08 09:19:14 +0000216 }
Matthew Bentham9a61fa62020-02-04 10:03:55 +0000217 catch (const BackendUnavailableException&)
218 {
219 // Ignore backends which are unavailable
220 }
David Beck1b61be52018-11-08 09:19:14 +0000221 }
Finn Williamsfe5a24b2020-04-09 16:05:28 +0100222
Finn Williams45a73622020-05-15 18:41:05 +0100223 BackendRegistryInstance().SetProfilingService(m_ProfilingService);
Finn Williamsfe5a24b2020-04-09 16:05:28 +0100224 // pass configuration info to the profiling service
225 m_ProfilingService.ConfigureProfilingService(options.m_ProfilingOptions);
226
Matthew Bentham9a61fa62020-02-04 10:03:55 +0000227 m_DeviceSpec.AddSupportedBackends(supportedBackends);
surmeh01bceff2f2018-03-29 16:29:27 +0100228}
229
230Runtime::~Runtime()
231{
232 std::vector<int> networkIDs;
surmeh013537c2c2018-05-18 16:31:43 +0100233 try
234 {
235 // Coverity fix: The following code may throw an exception of type std::length_error.
236 std::transform(m_LoadedNetworks.begin(), m_LoadedNetworks.end(),
237 std::back_inserter(networkIDs),
238 [](const auto &pair) { return pair.first; });
239 }
240 catch (const std::exception& e)
241 {
242 // Coverity fix: BOOST_LOG_TRIVIAL (typically used to report errors) may throw an
243 // exception of type std::length_error.
244 // Using stderr instead in this context as there is no point in nesting try-catch blocks here.
245 std::cerr << "WARNING: An error has occurred when getting the IDs of the networks to unload: " << e.what()
246 << "\nSome of the loaded networks may not be unloaded" << std::endl;
247 }
248 // We then proceed to unload all the networks which IDs have been appended to the list
249 // up to the point the exception was thrown (if any).
surmeh01bceff2f2018-03-29 16:29:27 +0100250
251 for (auto networkID : networkIDs)
252 {
surmeh013537c2c2018-05-18 16:31:43 +0100253 try
254 {
255 // Coverity fix: UnloadNetwork() may throw an exception of type std::length_error,
256 // boost::log::v2s_mt_posix::odr_violation or boost::log::v2s_mt_posix::system_error
257 UnloadNetwork(networkID);
258 }
259 catch (const std::exception& e)
260 {
261 // Coverity fix: BOOST_LOG_TRIVIAL (typically used to report errors) may throw an
262 // exception of type std::length_error.
263 // Using stderr instead in this context as there is no point in nesting try-catch blocks here.
264 std::cerr << "WARNING: An error has occurred when unloading network " << networkID << ": " << e.what()
265 << std::endl;
266 }
telsoa014fcda012018-03-09 14:13:49 +0000267 }
Narumol Prangnawarat60a20fb2019-12-09 17:24:41 +0000268
269 // Clear all dynamic backends.
270 DynamicBackendUtils::DeregisterDynamicBackends(m_DeviceSpec.GetDynamicBackends());
271 m_DeviceSpec.ClearDynamicBackends();
Colm Donelan1aff3932020-02-05 17:48:59 +0000272 m_BackendContexts.clear();
Finn Williams45a73622020-05-15 18:41:05 +0100273
274 BackendRegistryInstance().SetProfilingService(armnn::EmptyOptional());
telsoa014fcda012018-03-09 14:13:49 +0000275}
276
surmeh013537c2c2018-05-18 16:31:43 +0100277LoadedNetwork* Runtime::GetLoadedNetworkPtr(NetworkId networkId) const
278{
279 std::lock_guard<std::mutex> lockGuard(m_Mutex);
280 return m_LoadedNetworks.at(networkId).get();
281}
282
telsoa014fcda012018-03-09 14:13:49 +0000283TensorInfo Runtime::GetInputTensorInfo(NetworkId networkId, LayerBindingId layerId) const
284{
surmeh013537c2c2018-05-18 16:31:43 +0100285 return GetLoadedNetworkPtr(networkId)->GetInputTensorInfo(layerId);
telsoa014fcda012018-03-09 14:13:49 +0000286}
287
288TensorInfo Runtime::GetOutputTensorInfo(NetworkId networkId, LayerBindingId layerId) const
289{
surmeh013537c2c2018-05-18 16:31:43 +0100290 return GetLoadedNetworkPtr(networkId)->GetOutputTensorInfo(layerId);
telsoa014fcda012018-03-09 14:13:49 +0000291}
292
Derek Lamberti03614f62018-10-02 15:52:46 +0100293
telsoa014fcda012018-03-09 14:13:49 +0000294Status Runtime::EnqueueWorkload(NetworkId networkId,
telsoa01c577f2c2018-08-31 09:22:23 +0100295 const InputTensors& inputTensors,
296 const OutputTensors& outputTensors)
telsoa014fcda012018-03-09 14:13:49 +0000297{
surmeh013537c2c2018-05-18 16:31:43 +0100298 LoadedNetwork* loadedNetwork = GetLoadedNetworkPtr(networkId);
Derek Lamberti03614f62018-10-02 15:52:46 +0100299
300 static thread_local NetworkId lastId = networkId;
301 if (lastId != networkId)
302 {
303 LoadedNetworkFuncSafe(lastId, [](LoadedNetwork* network)
304 {
305 network->FreeWorkingMemory();
306 });
307 }
308 lastId=networkId;
309
surmeh013537c2c2018-05-18 16:31:43 +0100310 return loadedNetwork->EnqueueWorkload(inputTensors, outputTensors);
telsoa014fcda012018-03-09 14:13:49 +0000311}
312
Nattapat Chaimanowong6e948202019-03-22 14:01:46 +0000313void Runtime::RegisterDebugCallback(NetworkId networkId, const DebugCallbackFunction& func)
314{
315 LoadedNetwork* loadedNetwork = GetLoadedNetworkPtr(networkId);
316 loadedNetwork->RegisterDebugCallback(func);
317}
318
Matteo Martincighe54aa062019-08-05 14:12:11 +0100319void Runtime::LoadDynamicBackends(const std::string& overrideBackendPath)
320{
321 // Get the paths where to load the dynamic backends from
322 std::vector<std::string> backendPaths = DynamicBackendUtils::GetBackendPaths(overrideBackendPath);
323
324 // Get the shared objects to try to load as dynamic backends
325 std::vector<std::string> sharedObjects = DynamicBackendUtils::GetSharedObjects(backendPaths);
326
327 // Create a list of dynamic backends
Matteo Martincigh0c2b2892019-08-05 14:12:11 +0100328 m_DynamicBackends = DynamicBackendUtils::CreateDynamicBackends(sharedObjects);
329
330 // Register the dynamic backends in the backend registry
Matteo Martincigh89533902019-08-15 12:08:06 +0100331 BackendIdSet registeredBackendIds = DynamicBackendUtils::RegisterDynamicBackends(m_DynamicBackends);
332
333 // Add the registered dynamic backend ids to the list of supported backends
Narumol Prangnawarat60a20fb2019-12-09 17:24:41 +0000334 m_DeviceSpec.AddSupportedBackends(registeredBackendIds, true);
telsoa014fcda012018-03-09 14:13:49 +0000335}
Matteo Martincighe54aa062019-08-05 14:12:11 +0100336
337} // namespace armnn