blob: 085cf2cee86a92be4589de8b4264dc2887f71466 [file] [log] [blame]
Laurent Carlier749294b2020-06-01 09:03:17 +01001//
Jim Flynn6398a982020-05-27 17:05:21 +01002// Copyright © 2017 Arm Ltd and Contributors. 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>
Jan Eilers15fcc7e2021-07-14 13:50:15 +01009#include <armnn/BackendHelper.hpp>
Matthew Benthamf48afc62020-01-15 17:55:08 +000010#include <armnn/Logging.hpp>
alered01a7227ac2020-05-07 14:58:29 +010011#include <armnn/utility/Timer.hpp>
Matteo Martincighe54aa062019-08-05 14:12:11 +010012
Matteo Martincighe5b8eb92019-11-28 15:45:42 +000013#include <armnn/backends/IBackendContext.hpp>
Matteo Martincighe54aa062019-08-05 14:12:11 +010014#include <backendsCommon/DynamicBackendUtils.hpp>
Jan Eilersbb446e52020-04-02 13:56:54 +010015#include <armnn/utility/PolymorphicDowncast.hpp>
telsoa014fcda012018-03-09 14:13:49 +000016
Nikhil Raj77fe76b2021-06-09 14:55:32 +010017#include <common/include/LabelsAndEventClasses.hpp>
18
surmeh013537c2c2018-05-18 16:31:43 +010019#include <iostream>
20
Colm Donelan1aff3932020-02-05 17:48:59 +000021#include <backends/BackendProfiling.hpp>
telsoa014fcda012018-03-09 14:13:49 +000022
23using namespace armnn;
24using namespace std;
25
26namespace armnn
27{
Kevin Mayd92a6e42021-02-04 10:27:41 +000028IRuntime::IRuntime() : pRuntimeImpl( new RuntimeImpl(armnn::IRuntime::CreationOptions())) {}
29
30IRuntime::IRuntime(const IRuntime::CreationOptions& options) : pRuntimeImpl(new RuntimeImpl(options)) {}
31
32IRuntime::~IRuntime() = default;
telsoa014fcda012018-03-09 14:13:49 +000033
34IRuntime* IRuntime::CreateRaw(const CreationOptions& options)
35{
Kevin Mayd92a6e42021-02-04 10:27:41 +000036 return new IRuntime(options);
telsoa014fcda012018-03-09 14:13:49 +000037}
38
39IRuntimePtr IRuntime::Create(const CreationOptions& options)
40{
41 return IRuntimePtr(CreateRaw(options), &IRuntime::Destroy);
42}
43
44void IRuntime::Destroy(IRuntime* runtime)
45{
Kevin Mayd92a6e42021-02-04 10:27:41 +000046 delete runtime;
telsoa014fcda012018-03-09 14:13:49 +000047}
48
Kevin Mayd92a6e42021-02-04 10:27:41 +000049Status IRuntime::LoadNetwork(NetworkId& networkIdOut, IOptimizedNetworkPtr network)
50{
51 return pRuntimeImpl->LoadNetwork(networkIdOut, std::move(network));
52}
53
54Status IRuntime::LoadNetwork(NetworkId& networkIdOut,
55 IOptimizedNetworkPtr network,
56 std::string& errorMessage)
57{
58 return pRuntimeImpl->LoadNetwork(networkIdOut, std::move(network), errorMessage);
59}
60
61Status IRuntime::LoadNetwork(NetworkId& networkIdOut,
62 IOptimizedNetworkPtr network,
63 std::string& errorMessage,
64 const INetworkProperties& networkProperties)
65{
66 return pRuntimeImpl->LoadNetwork(networkIdOut, std::move(network), errorMessage, networkProperties);
67}
68
69TensorInfo IRuntime::GetInputTensorInfo(NetworkId networkId, LayerBindingId layerId) const
70{
71 return pRuntimeImpl->GetInputTensorInfo(networkId, layerId);
72}
73
74TensorInfo IRuntime::GetOutputTensorInfo(NetworkId networkId, LayerBindingId layerId) const
75{
76 return pRuntimeImpl->GetOutputTensorInfo(networkId, layerId);
77}
78
Finn Williamsf37b9702021-09-01 18:06:04 +010079std::vector<ImportedInputId> IRuntime::ImportInputs(NetworkId networkId, const InputTensors& inputTensors)
80{
81 return pRuntimeImpl->ImportInputs(networkId, inputTensors);
82}
83
84
Kevin Mayd92a6e42021-02-04 10:27:41 +000085Status IRuntime::EnqueueWorkload(NetworkId networkId,
86 const InputTensors& inputTensors,
87 const OutputTensors& outputTensors)
88{
89 return pRuntimeImpl->EnqueueWorkload(networkId, inputTensors, outputTensors);
90}
91
Mike Kelly55a8ffd2021-04-07 20:10:49 +010092Status IRuntime::Execute(IWorkingMemHandle& workingMemHandle,
93 const InputTensors& inputTensors,
Finn Williamsf37b9702021-09-01 18:06:04 +010094 const OutputTensors& outputTensors,
95 std::vector<ImportedInputId> preImportedInputs)
Mike Kelly55a8ffd2021-04-07 20:10:49 +010096{
Finn Williamsf37b9702021-09-01 18:06:04 +010097 return pRuntimeImpl->Execute(workingMemHandle, inputTensors, outputTensors, preImportedInputs);
Mike Kelly55a8ffd2021-04-07 20:10:49 +010098}
99
Kevin Mayd92a6e42021-02-04 10:27:41 +0000100Status IRuntime::UnloadNetwork(NetworkId networkId)
101{
102 return pRuntimeImpl->UnloadNetwork(networkId);
103}
104
105const IDeviceSpec& IRuntime::GetDeviceSpec() const
106{
107 return pRuntimeImpl->GetDeviceSpec();
108}
109
Mike Kelly55a8ffd2021-04-07 20:10:49 +0100110std::unique_ptr<IWorkingMemHandle> IRuntime::CreateWorkingMemHandle(NetworkId networkId)
111{
112 return pRuntimeImpl->CreateWorkingMemHandle(networkId);
113}
114
Kevin Mayd92a6e42021-02-04 10:27:41 +0000115const std::shared_ptr<IProfiler> IRuntime::GetProfiler(NetworkId networkId) const
116{
117 return pRuntimeImpl->GetProfiler(networkId);
118}
119
120void IRuntime::RegisterDebugCallback(NetworkId networkId, const DebugCallbackFunction& func)
121{
122 return pRuntimeImpl->RegisterDebugCallback(networkId, func);
123}
124
125int RuntimeImpl::GenerateNetworkId()
telsoa014fcda012018-03-09 14:13:49 +0000126{
127 return m_NetworkIdCounter++;
128}
129
Kevin Mayd92a6e42021-02-04 10:27:41 +0000130Status RuntimeImpl::LoadNetwork(NetworkId& networkIdOut, IOptimizedNetworkPtr inNetwork)
telsoa014fcda012018-03-09 14:13:49 +0000131{
telsoa01c577f2c2018-08-31 09:22:23 +0100132 std::string ignoredErrorMessage;
133 return LoadNetwork(networkIdOut, std::move(inNetwork), ignoredErrorMessage);
134}
135
Kevin Mayd92a6e42021-02-04 10:27:41 +0000136Status RuntimeImpl::LoadNetwork(NetworkId& networkIdOut,
137 IOptimizedNetworkPtr inNetwork,
138 std::string& errorMessage)
David Monahan4f1e8e42019-09-04 09:22:10 +0100139{
Jan Eilersc1c872f2021-07-22 13:17:04 +0100140 INetworkProperties networkProperties(
141 false, MemorySource::Undefined, MemorySource::Undefined);
David Monahan4f1e8e42019-09-04 09:22:10 +0100142 return LoadNetwork(networkIdOut, std::move(inNetwork), errorMessage, networkProperties);
143}
144
Kevin Mayd92a6e42021-02-04 10:27:41 +0000145Status RuntimeImpl::LoadNetwork(NetworkId& networkIdOut,
146 IOptimizedNetworkPtr inNetwork,
147 std::string& errorMessage,
148 const INetworkProperties& networkProperties)
telsoa01c577f2c2018-08-31 09:22:23 +0100149{
telsoa014fcda012018-03-09 14:13:49 +0000150 IOptimizedNetwork* rawNetwork = inNetwork.release();
David Beck1b61be52018-11-08 09:19:14 +0000151
152 networkIdOut = GenerateNetworkId();
153
154 for (auto&& context : m_BackendContexts)
155 {
156 context.second->BeforeLoadNetwork(networkIdOut);
157 }
158
telsoa014fcda012018-03-09 14:13:49 +0000159 unique_ptr<LoadedNetwork> loadedNetwork = LoadedNetwork::MakeLoadedNetwork(
Francis Murtagh3d2b4b22021-02-15 18:23:17 +0000160 std::unique_ptr<IOptimizedNetwork>(rawNetwork),
David Monahan4f1e8e42019-09-04 09:22:10 +0100161 errorMessage,
Sadik Armagan3184c902020-03-18 10:57:30 +0000162 networkProperties,
Finn Williamsf364d532021-06-09 17:07:33 +0100163 m_ProfilingService);
telsoa014fcda012018-03-09 14:13:49 +0000164
165 if (!loadedNetwork)
166 {
167 return Status::Failure;
168 }
169
telsoa01c577f2c2018-08-31 09:22:23 +0100170 {
171 std::lock_guard<std::mutex> lockGuard(m_Mutex);
172
173 // Stores the network
174 m_LoadedNetworks[networkIdOut] = std::move(loadedNetwork);
175 }
telsoa014fcda012018-03-09 14:13:49 +0000176
David Beck1b61be52018-11-08 09:19:14 +0000177 for (auto&& context : m_BackendContexts)
178 {
179 context.second->AfterLoadNetwork(networkIdOut);
180 }
181
Sadik Armagan3184c902020-03-18 10:57:30 +0000182 if (m_ProfilingService.IsProfilingEnabled())
Keith Davise394bd92019-12-02 15:12:19 +0000183 {
Sadik Armagan3184c902020-03-18 10:57:30 +0000184 m_ProfilingService.IncrementCounterValue(armnn::profiling::NETWORK_LOADS);
Keith Davise394bd92019-12-02 15:12:19 +0000185 }
186
telsoa014fcda012018-03-09 14:13:49 +0000187 return Status::Success;
telsoa014fcda012018-03-09 14:13:49 +0000188}
189
Kevin Mayd92a6e42021-02-04 10:27:41 +0000190Status RuntimeImpl::UnloadNetwork(NetworkId networkId)
telsoa014fcda012018-03-09 14:13:49 +0000191{
David Beck1b61be52018-11-08 09:19:14 +0000192 bool unloadOk = true;
193 for (auto&& context : m_BackendContexts)
David Beck9efb57d2018-11-05 13:40:33 +0000194 {
David Beck1b61be52018-11-08 09:19:14 +0000195 unloadOk &= context.second->BeforeUnloadNetwork(networkId);
David Beck9efb57d2018-11-05 13:40:33 +0000196 }
David Beck1b61be52018-11-08 09:19:14 +0000197
198 if (!unloadOk)
199 {
Kevin Mayd92a6e42021-02-04 10:27:41 +0000200 ARMNN_LOG(warning) << "RuntimeImpl::UnloadNetwork(): failed to unload "
Derek Lamberti08446972019-11-26 16:38:31 +0000201 "network with ID:" << networkId << " because BeforeUnloadNetwork failed";
David Beck1b61be52018-11-08 09:19:14 +0000202 return Status::Failure;
203 }
David Beck9efb57d2018-11-05 13:40:33 +0000204
Jim Flynnf7713212020-07-14 09:50:59 +0100205 std::unique_ptr<profiling::TimelineUtilityMethods> timelineUtils =
206 profiling::TimelineUtilityMethods::GetTimelineUtils(m_ProfilingService);
telsoa014fcda012018-03-09 14:13:49 +0000207 {
telsoa01c577f2c2018-08-31 09:22:23 +0100208 std::lock_guard<std::mutex> lockGuard(m_Mutex);
209
Jim Flynnf7713212020-07-14 09:50:59 +0100210 // If timeline recording is on mark the Network end of life
211 if (timelineUtils)
212 {
213 auto search = m_LoadedNetworks.find(networkId);
214 if (search != m_LoadedNetworks.end())
215 {
216 profiling::ProfilingGuid networkGuid = search->second->GetNetworkGuid();
217 timelineUtils->RecordEvent(networkGuid,
218 profiling::LabelsAndEventClasses::ARMNN_PROFILING_EOL_EVENT_CLASS);
219 }
220 }
telsoa01c577f2c2018-08-31 09:22:23 +0100221 if (m_LoadedNetworks.erase(networkId) == 0)
222 {
Kevin Mayd92a6e42021-02-04 10:27:41 +0000223 ARMNN_LOG(warning) << "WARNING: RuntimeImpl::UnloadNetwork(): " << networkId << " not found!";
telsoa01c577f2c2018-08-31 09:22:23 +0100224 return Status::Failure;
225 }
Sadik Armagan3184c902020-03-18 10:57:30 +0000226
227 if (m_ProfilingService.IsProfilingEnabled())
Keith Davise394bd92019-12-02 15:12:19 +0000228 {
Sadik Armagan3184c902020-03-18 10:57:30 +0000229 m_ProfilingService.IncrementCounterValue(armnn::profiling::NETWORK_UNLOADS);
Keith Davise394bd92019-12-02 15:12:19 +0000230 }
David Beck1b61be52018-11-08 09:19:14 +0000231 }
David Beck9efb57d2018-11-05 13:40:33 +0000232
David Beck1b61be52018-11-08 09:19:14 +0000233 for (auto&& context : m_BackendContexts)
234 {
235 context.second->AfterUnloadNetwork(networkId);
telsoa01c577f2c2018-08-31 09:22:23 +0100236 }
237
Kevin Mayd92a6e42021-02-04 10:27:41 +0000238 ARMNN_LOG(debug) << "RuntimeImpl::UnloadNetwork(): Unloaded network with ID: " << networkId;
telsoa014fcda012018-03-09 14:13:49 +0000239 return Status::Success;
240}
241
Kevin Mayd92a6e42021-02-04 10:27:41 +0000242const std::shared_ptr<IProfiler> RuntimeImpl::GetProfiler(NetworkId networkId) const
telsoa01c577f2c2018-08-31 09:22:23 +0100243{
244 auto it = m_LoadedNetworks.find(networkId);
245 if (it != m_LoadedNetworks.end())
246 {
247 auto& loadedNetwork = it->second;
248 return loadedNetwork->GetProfiler();
249 }
250
251 return nullptr;
252}
253
Kevin Mayd92a6e42021-02-04 10:27:41 +0000254void RuntimeImpl::ReportStructure() // armnn::profiling::IProfilingService& profilingService as param
Keith Davis33ed2212020-03-30 10:43:41 +0100255{
256 // No-op for the time being, but this may be useful in future to have the profilingService available
257 // if (profilingService.IsProfilingEnabled()){}
258
259 LoadedNetworks::iterator it = m_LoadedNetworks.begin();
260 while (it != m_LoadedNetworks.end())
261 {
262 auto& loadedNetwork = it->second;
263 loadedNetwork->SendNetworkStructure();
264 // Increment the Iterator to point to next entry
265 it++;
266 }
267}
268
Kevin Mayd92a6e42021-02-04 10:27:41 +0000269RuntimeImpl::RuntimeImpl(const IRuntime::CreationOptions& options)
Keith Davis33ed2212020-03-30 10:43:41 +0100270 : m_NetworkIdCounter(0),
271 m_ProfilingService(*this)
telsoa014fcda012018-03-09 14:13:49 +0000272{
alered01a7227ac2020-05-07 14:58:29 +0100273 const auto start_time = armnn::GetTimeNow();
Derek Lamberti08446972019-11-26 16:38:31 +0000274 ARMNN_LOG(info) << "ArmNN v" << ARMNN_VERSION << "\n";
Keith Davis33ed2212020-03-30 10:43:41 +0100275 if ( options.m_ProfilingOptions.m_TimelineEnabled && !options.m_ProfilingOptions.m_EnableProfiling )
276 {
Jan Eilersc1c872f2021-07-22 13:17:04 +0100277 throw RuntimeException(
278 "It is not possible to enable timeline reporting without profiling being enabled");
Keith Davis33ed2212020-03-30 10:43:41 +0100279 }
280
Matteo Martincighe54aa062019-08-05 14:12:11 +0100281 // Load any available/compatible dynamic backend before the runtime
282 // goes through the backend registry
283 LoadDynamicBackends(options.m_DynamicBackendsPath);
284
Matthew Bentham9a61fa62020-02-04 10:03:55 +0000285 BackendIdSet supportedBackends;
David Beck1b61be52018-11-08 09:19:14 +0000286 for (const auto& id : BackendRegistryInstance().GetBackendIds())
287 {
288 // Store backend contexts for the supported ones
Matthew Bentham9a61fa62020-02-04 10:03:55 +0000289 try {
David Beck1b61be52018-11-08 09:19:14 +0000290 auto factoryFun = BackendRegistryInstance().GetFactory(id);
Colm Donelan380c1a02021-08-17 00:52:23 +0100291 ARMNN_ASSERT(factoryFun != nullptr);
David Beck1b61be52018-11-08 09:19:14 +0000292 auto backend = factoryFun();
Colm Donelan380c1a02021-08-17 00:52:23 +0100293 ARMNN_ASSERT(backend != nullptr);
Narumol Prangnawaratac2770a2020-04-01 16:51:23 +0100294 ARMNN_ASSERT(backend.get() != nullptr);
David Beck1b61be52018-11-08 09:19:14 +0000295
Jan Eilersc1c872f2021-07-22 13:17:04 +0100296 auto customAllocatorMapIterator = options.m_CustomAllocatorMap.find(id);
Francis Murtagh62573b62021-08-12 11:55:21 +0100297 if (customAllocatorMapIterator != options.m_CustomAllocatorMap.end() &&
298 customAllocatorMapIterator->second == nullptr)
299 {
Colm Donelan380c1a02021-08-17 00:52:23 +0100300 // We need to manually clean up the dynamic backends before throwing an exception.
301 DynamicBackendUtils::DeregisterDynamicBackends(m_DeviceSpec.GetDynamicBackends());
302 m_DeviceSpec.ClearDynamicBackends();
Francis Murtagh62573b62021-08-12 11:55:21 +0100303 throw armnn::Exception("Allocator associated with id " + id.Get() + " is null");
304 }
Jan Eilersc1c872f2021-07-22 13:17:04 +0100305
Jan Eilers15fcc7e2021-07-14 13:50:15 +0100306 // If the runtime is created in protected mode only add backends that support this mode
307 if (options.m_ProtectedMode)
308 {
309 // check if backend supports ProtectedMode
310 using BackendCapability = BackendOptions::BackendOption;
311 BackendCapability protectedContentCapability {"ProtectedContentAllocation", true};
312 if (!HasCapability(protectedContentCapability, id))
313 {
314 // Protected Content Allocation is not supported by the backend
315 // backend should not be registered
316 ARMNN_LOG(warning) << "Backend "
317 << id
318 << " is not registered as does not support protected content allocation \n";
319 continue;
320 }
Jan Eilersc1c872f2021-07-22 13:17:04 +0100321 // The user is responsible to provide a custom memory allocator which allows to allocate
322 // protected memory
323 if (customAllocatorMapIterator != options.m_CustomAllocatorMap.end())
Jan Eilers15fcc7e2021-07-14 13:50:15 +0100324 {
Jan Eilersc1c872f2021-07-22 13:17:04 +0100325 std::string err;
326 if (customAllocatorMapIterator->second->GetMemorySourceType()
327 == armnn::MemorySource::DmaBufProtected)
328 {
329 if (!backend->UseCustomMemoryAllocator(customAllocatorMapIterator->second, err))
330 {
331 ARMNN_LOG(error) << "The backend "
332 << id
333 << " reported an error when entering protected mode. Backend won't be"
334 << " used. ErrorMsg: " << err;
335 continue;
336 }
337 // No errors so register the Custom Allocator with the BackendRegistry
338 BackendRegistryInstance().RegisterAllocator(id, customAllocatorMapIterator->second);
339 }
340 else
341 {
342 ARMNN_LOG(error) << "The CustomAllocator provided with the runtime options doesn't support "
343 "protected memory. Protected mode can't be activated. The backend "
Jan Eilers15fcc7e2021-07-14 13:50:15 +0100344 << id
Jan Eilersc1c872f2021-07-22 13:17:04 +0100345 << " is not going to be used. MemorySource must be MemorySource::DmaBufProtected";
346 continue;
347 }
348 }
349 else
350 {
351 ARMNN_LOG(error) << "Protected mode can't be activated for backend: "
352 << id
353 << " no custom allocator was provided to the runtime options.";
Jan Eilers15fcc7e2021-07-14 13:50:15 +0100354 continue;
355 }
356 }
Jan Eilersc1c872f2021-07-22 13:17:04 +0100357 else
358 {
359 // If a custom memory allocator is provided make the backend use that instead of the default
360 if (customAllocatorMapIterator != options.m_CustomAllocatorMap.end())
361 {
362 std::string err;
363 if (!backend->UseCustomMemoryAllocator(customAllocatorMapIterator->second, err))
364 {
365 ARMNN_LOG(error) << "The backend "
366 << id
367 << " reported an error when trying to use the provided custom allocator."
368 " Backend won't be used."
369 << " ErrorMsg: " << err;
370 continue;
371 }
372 // No errors so register the Custom Allocator with the BackendRegistry
373 BackendRegistryInstance().RegisterAllocator(id, customAllocatorMapIterator->second);
374 }
375 }
David Beck1b61be52018-11-08 09:19:14 +0000376 auto context = backend->CreateBackendContext(options);
377
378 // backends are allowed to return nullptrs if they
379 // don't wish to create a backend specific context
380 if (context)
381 {
382 m_BackendContexts.emplace(std::make_pair(id, std::move(context)));
383 }
Matthew Bentham9a61fa62020-02-04 10:03:55 +0000384 supportedBackends.emplace(id);
Colm Donelan1aff3932020-02-05 17:48:59 +0000385
386 unique_ptr<armnn::profiling::IBackendProfiling> profilingIface =
387 std::make_unique<armnn::profiling::BackendProfiling>(armnn::profiling::BackendProfiling(
Sadik Armagan3184c902020-03-18 10:57:30 +0000388 options, m_ProfilingService, id));
Colm Donelan1aff3932020-02-05 17:48:59 +0000389
390 // Backends may also provide a profiling context. Ask for it now.
391 auto profilingContext = backend->CreateBackendProfilingContext(options, profilingIface);
392 // Backends that don't support profiling will return a null profiling context.
393 if (profilingContext)
394 {
Finn Williamsfe5a24b2020-04-09 16:05:28 +0100395 // Pass the context onto the profiling service.
396 m_ProfilingService.AddBackendProfilingContext(id, profilingContext);
Colm Donelan1aff3932020-02-05 17:48:59 +0000397 }
David Beck1b61be52018-11-08 09:19:14 +0000398 }
Matthew Bentham9a61fa62020-02-04 10:03:55 +0000399 catch (const BackendUnavailableException&)
400 {
401 // Ignore backends which are unavailable
402 }
David Beck1b61be52018-11-08 09:19:14 +0000403 }
Finn Williamsfe5a24b2020-04-09 16:05:28 +0100404
Finn Williams45a73622020-05-15 18:41:05 +0100405 BackendRegistryInstance().SetProfilingService(m_ProfilingService);
Finn Williamsfe5a24b2020-04-09 16:05:28 +0100406 // pass configuration info to the profiling service
407 m_ProfilingService.ConfigureProfilingService(options.m_ProfilingOptions);
Jim Flynn6398a982020-05-27 17:05:21 +0100408 if (options.m_ProfilingOptions.m_EnableProfiling)
409 {
410 // try to wait for the profiling service to initialise
411 m_ProfilingService.WaitForProfilingServiceActivation(3000);
412 }
Finn Williamsfe5a24b2020-04-09 16:05:28 +0100413
Matthew Bentham9a61fa62020-02-04 10:03:55 +0000414 m_DeviceSpec.AddSupportedBackends(supportedBackends);
alered01a7227ac2020-05-07 14:58:29 +0100415
416 ARMNN_LOG(info) << "Initialization time: " << std::setprecision(2)
417 << std::fixed << armnn::GetTimeDuration(start_time).count() << " ms\n";
surmeh01bceff2f2018-03-29 16:29:27 +0100418}
419
Kevin Mayd92a6e42021-02-04 10:27:41 +0000420RuntimeImpl::~RuntimeImpl()
surmeh01bceff2f2018-03-29 16:29:27 +0100421{
alered01a7227ac2020-05-07 14:58:29 +0100422 const auto start_time = armnn::GetTimeNow();
surmeh01bceff2f2018-03-29 16:29:27 +0100423 std::vector<int> networkIDs;
surmeh013537c2c2018-05-18 16:31:43 +0100424 try
425 {
426 // Coverity fix: The following code may throw an exception of type std::length_error.
427 std::transform(m_LoadedNetworks.begin(), m_LoadedNetworks.end(),
428 std::back_inserter(networkIDs),
429 [](const auto &pair) { return pair.first; });
430 }
431 catch (const std::exception& e)
432 {
433 // Coverity fix: BOOST_LOG_TRIVIAL (typically used to report errors) may throw an
434 // exception of type std::length_error.
435 // Using stderr instead in this context as there is no point in nesting try-catch blocks here.
436 std::cerr << "WARNING: An error has occurred when getting the IDs of the networks to unload: " << e.what()
437 << "\nSome of the loaded networks may not be unloaded" << std::endl;
438 }
439 // We then proceed to unload all the networks which IDs have been appended to the list
440 // up to the point the exception was thrown (if any).
surmeh01bceff2f2018-03-29 16:29:27 +0100441
442 for (auto networkID : networkIDs)
443 {
surmeh013537c2c2018-05-18 16:31:43 +0100444 try
445 {
446 // Coverity fix: UnloadNetwork() may throw an exception of type std::length_error,
447 // boost::log::v2s_mt_posix::odr_violation or boost::log::v2s_mt_posix::system_error
448 UnloadNetwork(networkID);
449 }
450 catch (const std::exception& e)
451 {
452 // Coverity fix: BOOST_LOG_TRIVIAL (typically used to report errors) may throw an
453 // exception of type std::length_error.
454 // Using stderr instead in this context as there is no point in nesting try-catch blocks here.
455 std::cerr << "WARNING: An error has occurred when unloading network " << networkID << ": " << e.what()
456 << std::endl;
457 }
telsoa014fcda012018-03-09 14:13:49 +0000458 }
Narumol Prangnawarat60a20fb2019-12-09 17:24:41 +0000459
460 // Clear all dynamic backends.
461 DynamicBackendUtils::DeregisterDynamicBackends(m_DeviceSpec.GetDynamicBackends());
462 m_DeviceSpec.ClearDynamicBackends();
Colm Donelan1aff3932020-02-05 17:48:59 +0000463 m_BackendContexts.clear();
Finn Williams45a73622020-05-15 18:41:05 +0100464
465 BackendRegistryInstance().SetProfilingService(armnn::EmptyOptional());
alered01a7227ac2020-05-07 14:58:29 +0100466 ARMNN_LOG(info) << "Shutdown time: " << std::setprecision(2)
467 << std::fixed << armnn::GetTimeDuration(start_time).count() << " ms\n";
telsoa014fcda012018-03-09 14:13:49 +0000468}
469
Kevin Mayd92a6e42021-02-04 10:27:41 +0000470LoadedNetwork* RuntimeImpl::GetLoadedNetworkPtr(NetworkId networkId) const
surmeh013537c2c2018-05-18 16:31:43 +0100471{
472 std::lock_guard<std::mutex> lockGuard(m_Mutex);
473 return m_LoadedNetworks.at(networkId).get();
474}
475
Kevin Mayd92a6e42021-02-04 10:27:41 +0000476TensorInfo RuntimeImpl::GetInputTensorInfo(NetworkId networkId, LayerBindingId layerId) const
telsoa014fcda012018-03-09 14:13:49 +0000477{
surmeh013537c2c2018-05-18 16:31:43 +0100478 return GetLoadedNetworkPtr(networkId)->GetInputTensorInfo(layerId);
telsoa014fcda012018-03-09 14:13:49 +0000479}
480
Kevin Mayd92a6e42021-02-04 10:27:41 +0000481TensorInfo RuntimeImpl::GetOutputTensorInfo(NetworkId networkId, LayerBindingId layerId) const
telsoa014fcda012018-03-09 14:13:49 +0000482{
surmeh013537c2c2018-05-18 16:31:43 +0100483 return GetLoadedNetworkPtr(networkId)->GetOutputTensorInfo(layerId);
telsoa014fcda012018-03-09 14:13:49 +0000484}
485
Finn Williamsf37b9702021-09-01 18:06:04 +0100486std::vector<ImportedInputId> RuntimeImpl::ImportInputs(NetworkId networkId, const InputTensors& inputTensors)
487{
488 return GetLoadedNetworkPtr(networkId)->ImportInputs(inputTensors);
489}
490
491
Derek Lamberti03614f62018-10-02 15:52:46 +0100492
Kevin Mayd92a6e42021-02-04 10:27:41 +0000493Status RuntimeImpl::EnqueueWorkload(NetworkId networkId,
telsoa01c577f2c2018-08-31 09:22:23 +0100494 const InputTensors& inputTensors,
495 const OutputTensors& outputTensors)
telsoa014fcda012018-03-09 14:13:49 +0000496{
surmeh013537c2c2018-05-18 16:31:43 +0100497 LoadedNetwork* loadedNetwork = GetLoadedNetworkPtr(networkId);
Mike Kelly55a8ffd2021-04-07 20:10:49 +0100498
499 if (!loadedNetwork)
500 {
501 ARMNN_LOG(error) << "A Network with an id of " << networkId << " does not exist.\n";
502 return Status::Failure;
503 }
504 if (loadedNetwork->IsAsyncEnabled())
505 {
506 ARMNN_LOG(error) << "Network " << networkId << " is async enabled.\n";
507 return Status::Failure;
508 }
Narumol Prangnawarat5b4d0d52020-06-23 11:45:56 +0100509 ProfilerManager::GetInstance().RegisterProfiler(loadedNetwork->GetProfiler().get());
510
511 ARMNN_SCOPED_PROFILING_EVENT(Compute::Undefined, "EnqueueWorkload");
Derek Lamberti03614f62018-10-02 15:52:46 +0100512
513 static thread_local NetworkId lastId = networkId;
514 if (lastId != networkId)
515 {
516 LoadedNetworkFuncSafe(lastId, [](LoadedNetwork* network)
517 {
518 network->FreeWorkingMemory();
519 });
520 }
521 lastId=networkId;
522
surmeh013537c2c2018-05-18 16:31:43 +0100523 return loadedNetwork->EnqueueWorkload(inputTensors, outputTensors);
telsoa014fcda012018-03-09 14:13:49 +0000524}
525
Mike Kelly55a8ffd2021-04-07 20:10:49 +0100526Status RuntimeImpl::Execute(IWorkingMemHandle& iWorkingMemHandle,
527 const InputTensors& inputTensors,
Finn Williamsf37b9702021-09-01 18:06:04 +0100528 const OutputTensors& outputTensors,
529 std::vector<ImportedInputId> preImportedInputs)
Mike Kelly55a8ffd2021-04-07 20:10:49 +0100530{
531 NetworkId networkId = iWorkingMemHandle.GetNetworkId();
532 LoadedNetwork* loadedNetwork = GetLoadedNetworkPtr(networkId);
533
534 if (!loadedNetwork)
535 {
536 ARMNN_LOG(error) << "A Network with an id of " << networkId << " does not exist.\n";
537 return Status::Failure;
538 }
539 if (!loadedNetwork->IsAsyncEnabled())
540 {
Keith Davise813d672021-04-22 10:10:34 +0100541 ARMNN_LOG(error) << "Attempting execute " << networkId << " when it is not async enabled.\n";
Mike Kelly55a8ffd2021-04-07 20:10:49 +0100542 return Status::Failure;
543 }
544 ProfilerManager::GetInstance().RegisterProfiler(loadedNetwork->GetProfiler().get());
545
546 ARMNN_SCOPED_PROFILING_EVENT(Compute::Undefined, "Execute");
547
Finn Williamsf37b9702021-09-01 18:06:04 +0100548 return loadedNetwork->Execute(inputTensors, outputTensors, iWorkingMemHandle, preImportedInputs);
Mike Kelly55a8ffd2021-04-07 20:10:49 +0100549}
550
551/// Create a new unique WorkingMemHandle object. Create multiple handles if you wish to have
552/// overlapped Execution by calling this function from different threads.
553std::unique_ptr<IWorkingMemHandle> RuntimeImpl::CreateWorkingMemHandle(NetworkId networkId)
554{
555 LoadedNetwork* loadedNetwork = GetLoadedNetworkPtr(networkId);
556
557 if (!loadedNetwork)
558 {
559 ARMNN_LOG(error) << "A Network with an id of " << networkId << " does not exist.\n";
560 return nullptr;
561 }
562 if (!loadedNetwork->IsAsyncEnabled())
563 {
564 ARMNN_LOG(error) << "Network " << networkId << " is not async enabled.\n";
565 return nullptr;
566 }
567 ProfilerManager::GetInstance().RegisterProfiler(loadedNetwork->GetProfiler().get());
568
569 ARMNN_SCOPED_PROFILING_EVENT(Compute::Undefined, "CreateWorkingMemHandle");
570
571 static thread_local NetworkId lastId = networkId;
572 if (lastId != networkId)
573 {
574 LoadedNetworkFuncSafe(lastId, [](LoadedNetwork* network)
575 {
576 network->FreeWorkingMemory();
577 });
578 }
579 lastId=networkId;
580
581 return loadedNetwork->CreateWorkingMemHandle(networkId);
582}
583
Kevin Mayd92a6e42021-02-04 10:27:41 +0000584void RuntimeImpl::RegisterDebugCallback(NetworkId networkId, const DebugCallbackFunction& func)
Nattapat Chaimanowong6e948202019-03-22 14:01:46 +0000585{
586 LoadedNetwork* loadedNetwork = GetLoadedNetworkPtr(networkId);
587 loadedNetwork->RegisterDebugCallback(func);
588}
589
Kevin Mayd92a6e42021-02-04 10:27:41 +0000590void RuntimeImpl::LoadDynamicBackends(const std::string& overrideBackendPath)
Matteo Martincighe54aa062019-08-05 14:12:11 +0100591{
592 // Get the paths where to load the dynamic backends from
593 std::vector<std::string> backendPaths = DynamicBackendUtils::GetBackendPaths(overrideBackendPath);
594
595 // Get the shared objects to try to load as dynamic backends
596 std::vector<std::string> sharedObjects = DynamicBackendUtils::GetSharedObjects(backendPaths);
597
598 // Create a list of dynamic backends
Matteo Martincigh0c2b2892019-08-05 14:12:11 +0100599 m_DynamicBackends = DynamicBackendUtils::CreateDynamicBackends(sharedObjects);
600
601 // Register the dynamic backends in the backend registry
Matteo Martincigh89533902019-08-15 12:08:06 +0100602 BackendIdSet registeredBackendIds = DynamicBackendUtils::RegisterDynamicBackends(m_DynamicBackends);
603
604 // Add the registered dynamic backend ids to the list of supported backends
Narumol Prangnawarat60a20fb2019-12-09 17:24:41 +0000605 m_DeviceSpec.AddSupportedBackends(registeredBackendIds, true);
telsoa014fcda012018-03-09 14:13:49 +0000606}
Matteo Martincighe54aa062019-08-05 14:12:11 +0100607
608} // namespace armnn