24.08
|
#include <IRuntime.hpp>
Classes | |
struct | ExternalProfilingOptions |
Public Member Functions | |
CreationOptions () | |
Public Attributes | |
std::shared_ptr< IGpuAccTunedParameters > | m_GpuAccTunedParameters |
If set, uses the GpuAcc tuned parameters from the given object when executing GPU workloads. More... | |
bool | m_EnableGpuProfiling |
Setting this flag will allow the user to obtain GPU profiling information from the runtime. More... | |
std::string | m_DynamicBackendsPath |
Setting this value will override the paths set by the DYNAMIC_BACKEND_PATHS compiler directive Only a single path is allowed for the override It defines the path to search for any dynamic backend libraries. More... | |
bool | m_ProtectedMode |
Setting this flag will allow the user to create the Runtime in protected mode. More... | |
std::map< BackendId, std::shared_ptr< ICustomAllocator > > | m_CustomAllocatorMap |
A map to define a custom memory allocator for specific backend Ids. More... | |
std::map< BackendId, std::shared_ptr< IMemoryOptimizerStrategy > > | m_MemoryOptimizerStrategyMap |
A map to define a custom memory optimizer strategy for specific backend Ids. More... | |
ExternalProfilingOptions | m_ProfilingOptions |
std::vector< BackendOptions > | m_BackendOptions |
Pass backend specific options. More... | |
Definition at line 78 of file IRuntime.hpp.
|
inline |
Definition at line 80 of file IRuntime.hpp.
std::vector<BackendOptions> m_BackendOptions |
Pass backend specific options.
For example, to enable GpuAcc tuning add the following
Execute representative workloads through the runtime to generate tuning data. The tuning file is written once the runtime is destroyed To execute with the tuning data, start up with just the tuning file specified.
The following backend options are available: AllBackends: "MemoryOptimizerStrategy" : string [stategynameString] (Existing Memory Optimizer Strategies: ConstantMemoryStrategy) GpuAcc: "TuningLevel" : int [0..3] (0=UseOnly(default) | 1=RapidTuning | 2=NormalTuning | 3=ExhaustiveTuning) "TuningFile" : string [filenameString] "KernelProfilingEnabled" : bool [true | false]
Definition at line 190 of file IRuntime.hpp.
Referenced by ClBackendContext::ClBackendContext(), GpuFsaBackendContext::GpuFsaBackendContext(), and RuntimeImpl::RuntimeImpl().
std::map<BackendId, std::shared_ptr<ICustomAllocator> > m_CustomAllocatorMap |
A map to define a custom memory allocator for specific backend Ids.
A Custom Allocator is used for allocation of working memory in the backends. Set this if you need to take control of how memory is allocated on a backend. Required for Protected Mode in order to correctly allocate Protected Memory
Definition at line 115 of file IRuntime.hpp.
Referenced by RuntimeImpl::RuntimeImpl().
std::string m_DynamicBackendsPath |
Setting this value will override the paths set by the DYNAMIC_BACKEND_PATHS compiler directive Only a single path is allowed for the override It defines the path to search for any dynamic backend libraries.
Definition at line 99 of file IRuntime.hpp.
Referenced by RuntimeImpl::RuntimeImpl().
bool m_EnableGpuProfiling |
Setting this flag will allow the user to obtain GPU profiling information from the runtime.
Definition at line 94 of file IRuntime.hpp.
Referenced by ArmnnDevice::ArmnnDevice(), ClBackendContext::ClBackendContext(), and GpuFsaBackendContext::GpuFsaBackendContext().
std::shared_ptr<IGpuAccTunedParameters> m_GpuAccTunedParameters |
If set, uses the GpuAcc tuned parameters from the given object when executing GPU workloads.
It will also be updated with new tuned parameters if it is configured to do so.
Definition at line 91 of file IRuntime.hpp.
Referenced by ArmnnDevice::ArmnnDevice(), ClBackendContext::ClBackendContext(), and GpuFsaBackendContext::GpuFsaBackendContext().
std::map<BackendId, std::shared_ptr<IMemoryOptimizerStrategy> > m_MemoryOptimizerStrategyMap |
A map to define a custom memory optimizer strategy for specific backend Ids.
A Memory Optimizer Strategy provides a solution to an abstract representation of a network's memory requirements. This can also be used to return a pre-computed solution for a specific network. Set this if you want to implement a Custom Memory Optimizer Strategy for a given backend.
Definition at line 123 of file IRuntime.hpp.
Referenced by RuntimeImpl::RuntimeImpl().
ExternalProfilingOptions m_ProfilingOptions |
Definition at line 154 of file IRuntime.hpp.
Referenced by RuntimeImpl::RuntimeImpl().
bool m_ProtectedMode |
Setting this flag will allow the user to create the Runtime in protected mode.
It will run all the inferences on protected memory and will make sure that INetworkProperties::m_ImportEnabled set to true with MemorySource::DmaBufProtected option This requires that the backend supports Protected Memory and has an allocator capable of allocating Protected Memory associated with it.
Definition at line 106 of file IRuntime.hpp.
Referenced by RuntimeImpl::RuntimeImpl().