ArmNN
 22.05.01
IBackendInternal Class Referenceabstract

#include <IBackendInternal.hpp>

Inheritance diagram for IBackendInternal:
IBackend ClBackend MockBackend MockImportBackend NeonBackend RefBackend

Public Types

using IWorkloadFactoryPtr = std::unique_ptr< IWorkloadFactory >
 
using IBackendContextPtr = std::unique_ptr< IBackendContext >
 
using IBackendProfilingContextPtr = std::shared_ptr< arm::pipe::IBackendProfilingContext >
 This is the bridge between backend and backend profiling we'll keep it in the backend namespace. More...
 
using IBackendProfilingPtr = std::unique_ptr< arm::pipe::IBackendProfiling >
 
using ILayerSupportSharedPtr = std::shared_ptr< ILayerSupport >
 
using IBackendSpecificModelContextPtr = std::shared_ptr< IBackendModelContext >
 
using IMemoryManagerUniquePtr = std::unique_ptr< IMemoryManager >
 
using IMemoryManagerSharedPtr = std::shared_ptr< IMemoryManager >
 

Public Member Functions

 ~IBackendInternal () override=default
 Allow backends created by the factory function to be destroyed through IBackendInternal. More...
 
virtual IMemoryManagerUniquePtr CreateMemoryManager () const
 
virtual IWorkloadFactoryPtr CreateWorkloadFactory (const IMemoryManagerSharedPtr &memoryManager=nullptr) const =0
 
virtual IWorkloadFactoryPtr CreateWorkloadFactory (class TensorHandleFactoryRegistry &tensorHandleFactoryRegistry) const
 
virtual IWorkloadFactoryPtr CreateWorkloadFactory (const IMemoryManagerSharedPtr &memoryManager, const ModelOptions &modelOptions) const
 
virtual IWorkloadFactoryPtr CreateWorkloadFactory (class TensorHandleFactoryRegistry &tensorHandleFactoryRegistry, const ModelOptions &modelOptions) const
 
virtual IWorkloadFactoryPtr CreateWorkloadFactory (class TensorHandleFactoryRegistry &tensorHandleFactoryRegistry, const ModelOptions &modelOptions, MemorySourceFlags inputFlags, MemorySourceFlags outputFlags) const
 
virtual IBackendContextPtr CreateBackendContext (const IRuntime::CreationOptions &) const
 Create the runtime context of the backend. More...
 
virtual IBackendSpecificModelContextPtr CreateBackendSpecificModelContext (const ModelOptions &modelOptions) const
 
virtual IBackendProfilingContextPtr CreateBackendProfilingContext (const IRuntime::CreationOptions &creationOptions, IBackendProfilingPtr &backendProfiling)
 Create context specifically used for profiling interaction from backends. More...
 
virtual ILayerSupportSharedPtr GetLayerSupport () const =0
 
virtual ILayerSupportSharedPtr GetLayerSupport (const ModelOptions &modelOptions) const
 
virtual OptimizationViews OptimizeSubgraphView (const SubgraphView &subgraph) const
 
virtual OptimizationViews OptimizeSubgraphView (const SubgraphView &subgraph, const ModelOptions &modelOptions) const
 
bool SupportsTensorAllocatorAPI () const
 
ITensorHandleFactory::FactoryId GetBackwardCompatibleFavoriteHandleFactory ()
 
virtual std::vector< ITensorHandleFactory::FactoryIdGetHandleFactoryPreferences () const
 (Optional) Returns a vector of supported TensorHandleFactory ids in preference order. More...
 
virtual void RegisterTensorHandleFactories (class TensorHandleFactoryRegistry &)
 (Optional) Register TensorHandleFactories Either this method or CreateMemoryManager() and IWorkloadFactory::CreateTensor()/IWorkloadFactory::CreateSubtensor() methods must be implemented. More...
 
virtual void RegisterTensorHandleFactories (class TensorHandleFactoryRegistry &registry, MemorySourceFlags inputFlags, MemorySourceFlags outputFlags)
 (Optional) Register TensorHandleFactories Either this method or CreateMemoryManager() and IWorkloadFactory::CreateTensor()/IWorkloadFactory::CreateSubtensor() methods must be implemented. More...
 
virtual BackendCapabilities GetCapabilities () const
 Returns a BackendCapability if the backend lists the capability The BackendCapability must then be inspected to check whether or not that BackendCapability is supported Otherwise returns an EmptyOptional if the BackendCapability is unlisted. More...
 
virtual bool HasCapability (BackendCapability) const
 Returns true if backend support the capability false otherwise. More...
 
virtual bool UseCustomMemoryAllocator (std::shared_ptr< ICustomAllocator > allocator, armnn::Optional< std::string &> errMsg)
 Signals the backend to use a custom memory allocator provided by the user. More...
 
virtual std::unique_ptr< ICustomAllocatorGetDefaultAllocator () const
 Returns the default memory allocator for the backend. More...
 
virtual unsigned int GetNumberOfCacheFiles () const
 Returns the number of files cached if backend supports caching. More...
 
- Public Member Functions inherited from IBackend
virtual const BackendIdGetId () const =0
 

Static Public Member Functions

static constexpr BackendVersion GetApiVersion ()
 Returns the version of the Backend API. More...
 

Protected Member Functions

 IBackendInternal ()=default
 Creation must be done through a specific backend interface. More...
 
- Protected Member Functions inherited from IBackend
 IBackend ()
 
virtual ~IBackend ()
 

Detailed Description

Definition at line 75 of file IBackendInternal.hpp.

Member Typedef Documentation

◆ IBackendContextPtr

using IBackendContextPtr = std::unique_ptr<IBackendContext>

Definition at line 88 of file IBackendInternal.hpp.

◆ IBackendProfilingContextPtr

using IBackendProfilingContextPtr = std::shared_ptr<arm::pipe::IBackendProfilingContext>

This is the bridge between backend and backend profiling we'll keep it in the backend namespace.

Definition at line 90 of file IBackendInternal.hpp.

◆ IBackendProfilingPtr

using IBackendProfilingPtr = std::unique_ptr<arm::pipe::IBackendProfiling>

Definition at line 91 of file IBackendInternal.hpp.

◆ IBackendSpecificModelContextPtr

Definition at line 94 of file IBackendInternal.hpp.

◆ ILayerSupportSharedPtr

using ILayerSupportSharedPtr = std::shared_ptr<ILayerSupport>

Definition at line 92 of file IBackendInternal.hpp.

◆ IMemoryManagerSharedPtr

using IMemoryManagerSharedPtr = std::shared_ptr<IMemoryManager>

Definition at line 97 of file IBackendInternal.hpp.

◆ IMemoryManagerUniquePtr

using IMemoryManagerUniquePtr = std::unique_ptr<IMemoryManager>

Definition at line 96 of file IBackendInternal.hpp.

◆ IWorkloadFactoryPtr

using IWorkloadFactoryPtr = std::unique_ptr<IWorkloadFactory>

Definition at line 87 of file IBackendInternal.hpp.

Constructor & Destructor Documentation

◆ IBackendInternal()

IBackendInternal ( )
protecteddefault

Creation must be done through a specific backend interface.

◆ ~IBackendInternal()

~IBackendInternal ( )
overridedefault

Allow backends created by the factory function to be destroyed through IBackendInternal.

Member Function Documentation

◆ CreateBackendContext()

IBackendInternal::IBackendContextPtr CreateBackendContext ( const IRuntime::CreationOptions ) const
virtual

Create the runtime context of the backend.

Implementations may return a default-constructed IBackendContextPtr if no context is needed at runtime. Implementations must throw BackendUnavailableException if the backend cannot be used (for example, necessary accelerator hardware is not present). The default implementation always returns a default-constructed pointer.

Reimplemented in ClBackend, NeonBackend, RefBackend, MockBackend, and MockImportBackend.

Definition at line 70 of file IBackendInternal.cpp.

71 {
72  return IBackendContextPtr{};
73 }
std::unique_ptr< IBackendContext > IBackendContextPtr

◆ CreateBackendProfilingContext()

IBackendInternal::IBackendProfilingContextPtr CreateBackendProfilingContext ( const IRuntime::CreationOptions creationOptions,
IBackendProfilingPtr backendProfiling 
)
virtual

Create context specifically used for profiling interaction from backends.

Reimplemented in ClBackend, NeonBackend, RefBackend, MockBackend, and MockImportBackend.

Definition at line 81 of file IBackendInternal.cpp.

83 {
85 }
std::shared_ptr< arm::pipe::IBackendProfilingContext > IBackendProfilingContextPtr
This is the bridge between backend and backend profiling we&#39;ll keep it in the backend namespace...

◆ CreateBackendSpecificModelContext()

IBackendInternal::IBackendSpecificModelContextPtr CreateBackendSpecificModelContext ( const ModelOptions modelOptions) const
virtual

Reimplemented in ClBackend, and NeonBackend.

Definition at line 75 of file IBackendInternal.cpp.

77 {
79 }
std::shared_ptr< IBackendModelContext > IBackendSpecificModelContextPtr

◆ CreateMemoryManager()

IMemoryManagerUniquePtr CreateMemoryManager ( ) const
virtual

Reimplemented in ClBackend, RefBackend, MockBackend, NeonBackend, and MockImportBackend.

Definition at line 12 of file IBackendInternal.cpp.

Referenced by LoadedNetwork::MakeLoadedNetwork().

13 {
14  return IMemoryManagerUniquePtr();
15 }
std::unique_ptr< IMemoryManager > IMemoryManagerUniquePtr

◆ CreateWorkloadFactory() [1/5]

virtual IWorkloadFactoryPtr CreateWorkloadFactory ( const IMemoryManagerSharedPtr memoryManager = nullptr) const
pure virtual

◆ CreateWorkloadFactory() [2/5]

IBackendInternal::IWorkloadFactoryPtr CreateWorkloadFactory ( class TensorHandleFactoryRegistry tensorHandleFactoryRegistry) const
virtual

Reimplemented in ClBackend, RefBackend, NeonBackend, and MockImportBackend.

Definition at line 17 of file IBackendInternal.cpp.

19 {
20  return IWorkloadFactoryPtr{};
21 }
std::unique_ptr< IWorkloadFactory > IWorkloadFactoryPtr

◆ CreateWorkloadFactory() [3/5]

IBackendInternal::IWorkloadFactoryPtr CreateWorkloadFactory ( const IMemoryManagerSharedPtr memoryManager,
const ModelOptions modelOptions 
) const
virtual

Reimplemented in ClBackend, and NeonBackend.

Definition at line 23 of file IBackendInternal.cpp.

References IBackendInternal::CreateWorkloadFactory(), and IBackend::GetId().

26 {
27  if (!modelOptions.empty())
28  {
29  for (auto optionsGroup : modelOptions)
30  {
31  if (optionsGroup.GetBackendId() == GetId())
32  {
33  return IWorkloadFactoryPtr{};
34  }
35  }
36  }
37 
38  return CreateWorkloadFactory(memoryManager);
39 }
std::unique_ptr< IWorkloadFactory > IWorkloadFactoryPtr
virtual const BackendId & GetId() const =0
virtual IWorkloadFactoryPtr CreateWorkloadFactory(const IMemoryManagerSharedPtr &memoryManager=nullptr) const =0

◆ CreateWorkloadFactory() [4/5]

IBackendInternal::IWorkloadFactoryPtr CreateWorkloadFactory ( class TensorHandleFactoryRegistry tensorHandleFactoryRegistry,
const ModelOptions modelOptions 
) const
virtual

Reimplemented in ClBackend, and NeonBackend.

Definition at line 41 of file IBackendInternal.cpp.

References IBackendInternal::CreateWorkloadFactory(), and IBackend::GetId().

44 {
45  if (!modelOptions.empty())
46  {
47  for (auto optionsGroup : modelOptions)
48  {
49  if (optionsGroup.GetBackendId() == GetId())
50  {
51  return IWorkloadFactoryPtr{};
52  }
53  }
54  }
55 
56  return CreateWorkloadFactory(tensorHandleFactoryRegistry);
57 }
std::unique_ptr< IWorkloadFactory > IWorkloadFactoryPtr
virtual const BackendId & GetId() const =0
virtual IWorkloadFactoryPtr CreateWorkloadFactory(const IMemoryManagerSharedPtr &memoryManager=nullptr) const =0

◆ CreateWorkloadFactory() [5/5]

IBackendInternal::IWorkloadFactoryPtr CreateWorkloadFactory ( class TensorHandleFactoryRegistry tensorHandleFactoryRegistry,
const ModelOptions modelOptions,
MemorySourceFlags  inputFlags,
MemorySourceFlags  outputFlags 
) const
virtual

Reimplemented in ClBackend.

Definition at line 59 of file IBackendInternal.cpp.

References IBackendInternal::CreateWorkloadFactory(), and armnn::IgnoreUnused().

64 {
65  IgnoreUnused(inputFlags);
66  IgnoreUnused(outputFlags);
67  return CreateWorkloadFactory(tensorHandleFactoryRegistry, modelOptions);
68 }
void IgnoreUnused(Ts &&...)
virtual IWorkloadFactoryPtr CreateWorkloadFactory(const IMemoryManagerSharedPtr &memoryManager=nullptr) const =0

◆ GetApiVersion()

static constexpr BackendVersion GetApiVersion ( )
inlinestatic

Returns the version of the Backend API.

Definition at line 165 of file IBackendInternal.hpp.

References BackendVersion::BackendVersion().

Referenced by DynamicBackend::DynamicBackend(), GetVersion(), and DynamicBackendUtils::IsBackendCompatible().

165 { return BackendVersion(1, 0); }

◆ GetBackwardCompatibleFavoriteHandleFactory()

ITensorHandleFactory::FactoryId GetBackwardCompatibleFavoriteHandleFactory ( )

Definition at line 131 of file IBackendInternal.cpp.

References IBackendInternal::GetHandleFactoryPreferences(), and ITensorHandleFactory::LegacyFactoryId.

132 {
133  auto favorites = GetHandleFactoryPreferences();
134  if (favorites.empty())
135  {
137  }
138 
139  return favorites[0];
140 }
virtual std::vector< ITensorHandleFactory::FactoryId > GetHandleFactoryPreferences() const
(Optional) Returns a vector of supported TensorHandleFactory ids in preference order.
static const FactoryId LegacyFactoryId

◆ GetCapabilities()

virtual BackendCapabilities GetCapabilities ( ) const
inlinevirtual

Returns a BackendCapability if the backend lists the capability The BackendCapability must then be inspected to check whether or not that BackendCapability is supported Otherwise returns an EmptyOptional if the BackendCapability is unlisted.

Reimplemented in ClBackend, NeonBackend, and RefBackend.

Definition at line 170 of file IBackendInternal.hpp.

References armnn::ARMNN_DEPRECATED_MSG_REMOVAL_DATE().

Referenced by LoadedNetwork::MakeLoadedNetwork().

171  {
172  return BackendCapabilities("IBackendInternal NullCapabilities");
173  };
BackendOptions BackendCapabilities

◆ GetDefaultAllocator()

virtual std::unique_ptr<ICustomAllocator> GetDefaultAllocator ( ) const
inlinevirtual

Returns the default memory allocator for the backend.

Returns
- Returns unique pointer to the Default Allocator of the Backend

Reimplemented in ClBackend, NeonBackend, RefBackend, and MockBackend.

Definition at line 203 of file IBackendInternal.hpp.

204  {
205  throw armnn::Exception("GetDefaultAllocator: Function has not been implemented in backend.");
206  }
Base class for all ArmNN exceptions so that users can filter to just those.
Definition: Exceptions.hpp:46

◆ GetHandleFactoryPreferences()

std::vector< ITensorHandleFactory::FactoryId > GetHandleFactoryPreferences ( ) const
virtual

(Optional) Returns a vector of supported TensorHandleFactory ids in preference order.

Reimplemented in ClBackend, NeonBackend, RefBackend, and MockImportBackend.

Definition at line 142 of file IBackendInternal.cpp.

Referenced by armnn::CalculateSlotOption(), IBackendInternal::GetBackwardCompatibleFavoriteHandleFactory(), and IBackendInternal::SupportsTensorAllocatorAPI().

143 {
144  return std::vector<ITensorHandleFactory::FactoryId>();
145 }

◆ GetLayerSupport() [1/2]

virtual ILayerSupportSharedPtr GetLayerSupport ( ) const
pure virtual

◆ GetLayerSupport() [2/2]

IBackendInternal::ILayerSupportSharedPtr GetLayerSupport ( const ModelOptions modelOptions) const
virtual

Reimplemented in ClBackend, and NeonBackend.

Definition at line 87 of file IBackendInternal.cpp.

References IBackend::GetId(), and IBackendInternal::GetLayerSupport().

88 {
89  if (!modelOptions.empty())
90  {
91  for (auto optionsGroup : modelOptions)
92  {
93  if (optionsGroup.GetBackendId() == GetId())
94  {
95  return ILayerSupportSharedPtr{};
96  }
97  }
98  }
99 
100  return GetLayerSupport();
101 }
virtual const BackendId & GetId() const =0
std::shared_ptr< ILayerSupport > ILayerSupportSharedPtr
virtual ILayerSupportSharedPtr GetLayerSupport() const =0

◆ GetNumberOfCacheFiles()

virtual unsigned int GetNumberOfCacheFiles ( ) const
inlinevirtual

Returns the number of files cached if backend supports caching.

Returns
- Returns 0 if backend does not support caching otherwise number of files cached

Reimplemented in ClBackend.

Definition at line 211 of file IBackendInternal.hpp.

211 { return 0; }

◆ HasCapability()

virtual bool HasCapability ( BackendCapability  ) const
inlinevirtual

Returns true if backend support the capability false otherwise.

Definition at line 177 of file IBackendInternal.hpp.

177 { return false; }

◆ OptimizeSubgraphView() [1/2]

OptimizationViews OptimizeSubgraphView ( const SubgraphView subgraph) const
virtual

Reimplemented in RefBackend, MockImportBackend, and MockBackend.

Definition at line 105 of file IBackendInternal.cpp.

References OptimizationViews::AddUntouchedSubgraph().

Referenced by IBackendInternal::OptimizeSubgraphView().

106 {
107  OptimizationViews result;
108  result.AddUntouchedSubgraph(SubgraphView(subgraph));
109 
110  return result;
111 }

◆ OptimizeSubgraphView() [2/2]

OptimizationViews OptimizeSubgraphView ( const SubgraphView subgraph,
const ModelOptions modelOptions 
) const
virtual

Reimplemented in ClBackend, and NeonBackend.

Definition at line 113 of file IBackendInternal.cpp.

References IBackendInternal::OptimizeSubgraphView().

115 {
116  return OptimizeSubgraphView(subgraph);
117 }
virtual OptimizationViews OptimizeSubgraphView(const SubgraphView &subgraph) const

◆ RegisterTensorHandleFactories() [1/2]

virtual void RegisterTensorHandleFactories ( class TensorHandleFactoryRegistry )
inlinevirtual

(Optional) Register TensorHandleFactories Either this method or CreateMemoryManager() and IWorkloadFactory::CreateTensor()/IWorkloadFactory::CreateSubtensor() methods must be implemented.

Reimplemented in ClBackend, NeonBackend, RefBackend, and MockImportBackend.

Definition at line 155 of file IBackendInternal.hpp.

Referenced by IBackendInternal::RegisterTensorHandleFactories().

155 {}

◆ RegisterTensorHandleFactories() [2/2]

void RegisterTensorHandleFactories ( class TensorHandleFactoryRegistry registry,
MemorySourceFlags  inputFlags,
MemorySourceFlags  outputFlags 
)
virtual

(Optional) Register TensorHandleFactories Either this method or CreateMemoryManager() and IWorkloadFactory::CreateTensor()/IWorkloadFactory::CreateSubtensor() methods must be implemented.

Reimplemented in ClBackend.

Definition at line 124 of file IBackendInternal.cpp.

References IBackendInternal::RegisterTensorHandleFactories().

127 {
128  return RegisterTensorHandleFactories(registry);
129 }
virtual void RegisterTensorHandleFactories(class TensorHandleFactoryRegistry &)
(Optional) Register TensorHandleFactories Either this method or CreateMemoryManager() and IWorkloadFa...

◆ SupportsTensorAllocatorAPI()

bool SupportsTensorAllocatorAPI ( ) const

Definition at line 119 of file IBackendInternal.cpp.

References IBackendInternal::GetHandleFactoryPreferences().

Referenced by LoadedNetwork::MakeLoadedNetwork().

120 {
121  return !GetHandleFactoryPreferences().empty();
122 }
virtual std::vector< ITensorHandleFactory::FactoryId > GetHandleFactoryPreferences() const
(Optional) Returns a vector of supported TensorHandleFactory ids in preference order.

◆ UseCustomMemoryAllocator()

virtual bool UseCustomMemoryAllocator ( std::shared_ptr< ICustomAllocator allocator,
armnn::Optional< std::string &>  errMsg 
)
inlinevirtual

Signals the backend to use a custom memory allocator provided by the user.

Parameters
allocator- a pointer to the provided ICustomAllocator to use with this backend
errMsg- Optional string variable to return error messages
Returns
- Returns true if switching to custom allocator was successful

Reimplemented in ClBackend.

Definition at line 184 of file IBackendInternal.hpp.

References armnn::IgnoreUnused(), and OptionalReferenceSwitch< std::is_reference< T >::value, T >::value().

186  {
187  IgnoreUnused(allocator);
188  if (errMsg)
189  {
190  std::stringstream message;
191  message << "The backend " << GetId() << " doesn't support using a custom allocator. This error might"
192  " be related with the protected mode if the backend doesn't"
193  " fully support it.";
194 
195  errMsg.value() = message.str();
196  }
197  return false;
198  }
void IgnoreUnused(Ts &&...)
virtual const BackendId & GetId() const =0

The documentation for this class was generated from the following files: