blob: 08db22e4bb098d91939fdd728c69dc6ef8352f09 [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#pragma once
6
telsoa014fcda012018-03-09 14:13:49 +00007
telsoa014fcda012018-03-09 14:13:49 +00008#include "INetwork.hpp"
telsoa01c577f2c2018-08-31 09:22:23 +01009#include "IProfiler.hpp"
Matthew Bentham313e1c82019-03-25 17:37:47 +000010#include "Tensor.hpp"
11#include "Types.hpp"
telsoa014fcda012018-03-09 14:13:49 +000012#include "TypesUtils.hpp"
13
Matthew Bentham313e1c82019-03-25 17:37:47 +000014#include <memory>
15
telsoa014fcda012018-03-09 14:13:49 +000016namespace armnn
17{
18
19using NetworkId = int;
20
telsoa01c577f2c2018-08-31 09:22:23 +010021class IGpuAccTunedParameters;
telsoa014fcda012018-03-09 14:13:49 +000022
23class IRuntime;
24using IRuntimePtr = std::unique_ptr<IRuntime, void(*)(IRuntime* runtime)>;
25
David Monahan4f1e8e42019-09-04 09:22:10 +010026struct INetworkProperties
27{
28 INetworkProperties(bool importEnabled = false, bool exportEnabled = false)
29 : m_ImportEnabled(importEnabled),
30 m_ExportEnabled(exportEnabled) {}
31
32 const bool m_ImportEnabled;
33 const bool m_ExportEnabled;
34
35 virtual ~INetworkProperties() {}
36};
37
telsoa014fcda012018-03-09 14:13:49 +000038class IRuntime
39{
40public:
41 struct CreationOptions
42 {
telsoa01c577f2c2018-08-31 09:22:23 +010043 CreationOptions()
44 : m_GpuAccTunedParameters(nullptr)
45 , m_EnableGpuProfiling(false)
Matteo Martincighe7d44982019-08-05 12:16:47 +010046 , m_DynamicBackendsPath("")
telsoa01c577f2c2018-08-31 09:22:23 +010047 {}
telsoa014fcda012018-03-09 14:13:49 +000048
telsoa01c577f2c2018-08-31 09:22:23 +010049 /// If set, uses the GpuAcc tuned parameters from the given object when executing GPU workloads.
50 /// It will also be updated with new tuned parameters if it is configured to do so.
51 std::shared_ptr<IGpuAccTunedParameters> m_GpuAccTunedParameters;
52
53 // Setting this flag will allow the user to obtain GPU profiling information from the runtime.
54 bool m_EnableGpuProfiling;
Matteo Martincighe7d44982019-08-05 12:16:47 +010055
56 // Setting this value will override the paths set by the DYNAMIC_BACKEND_PATHS compiler directive
57 // Only a single path is allowed for the override
58 std::string m_DynamicBackendsPath;
Aron Virginas-Tar1a0f6912019-08-23 15:18:44 +010059
60 struct ExternalProfilingOptions
61 {
62 ExternalProfilingOptions()
63 : m_EnableProfiling(false)
64 , m_OutgoingCaptureFile("")
65 , m_IncomingCaptureFile("")
66 , m_FileOnly(false)
Colm Donelan02705242019-11-14 14:19:07 +000067 , m_CapturePeriod(LOWEST_CAPTURE_PERIOD)
Aron Virginas-Tar1a0f6912019-08-23 15:18:44 +010068 {}
69
70 bool m_EnableProfiling;
71 std::string m_OutgoingCaptureFile;
72 std::string m_IncomingCaptureFile;
73 bool m_FileOnly;
74 uint32_t m_CapturePeriod;
75 };
Jim Flynn4951b8c2019-10-03 10:04:30 -070076
77 ExternalProfilingOptions m_ProfilingOptions;
telsoa014fcda012018-03-09 14:13:49 +000078 };
79
80 static IRuntime* CreateRaw(const CreationOptions& options);
81 static IRuntimePtr Create(const CreationOptions& options);
82 static void Destroy(IRuntime* runtime);
83
telsoa01c577f2c2018-08-31 09:22:23 +010084 /// Loads a complete network into the IRuntime.
85 /// @param [out] networkIdOut - Unique identifier for the network is returned in this reference.
86 /// @param [in] network - Complete network to load into the IRuntime.
telsoa014fcda012018-03-09 14:13:49 +000087 /// The runtime takes ownership of the network once passed in.
88 /// @return armnn::Status
89 virtual Status LoadNetwork(NetworkId& networkIdOut, IOptimizedNetworkPtr network) = 0;
90
telsoa01c577f2c2018-08-31 09:22:23 +010091 /// Load a complete network into the IRuntime.
92 /// @param [out] networkIdOut Unique identifier for the network is returned in this reference.
93 /// @param [in] network Complete network to load into the IRuntime.
94 /// @param [out] errorMessage Error message if there were any errors.
95 /// The runtime takes ownership of the network once passed in.
96 /// @return armnn::Status
97 virtual Status LoadNetwork(NetworkId& networkIdOut,
98 IOptimizedNetworkPtr network,
David Monahan4f1e8e42019-09-04 09:22:10 +010099 std::string& errorMessage) = 0;
100
101 virtual Status LoadNetwork(NetworkId& networkIdOut,
102 IOptimizedNetworkPtr network,
103 std::string& errorMessage,
104 const INetworkProperties& networkProperties) = 0;
telsoa01c577f2c2018-08-31 09:22:23 +0100105
telsoa014fcda012018-03-09 14:13:49 +0000106 virtual TensorInfo GetInputTensorInfo(NetworkId networkId, LayerBindingId layerId) const = 0;
107 virtual TensorInfo GetOutputTensorInfo(NetworkId networkId, LayerBindingId layerId) const = 0;
108
telsoa01c577f2c2018-08-31 09:22:23 +0100109 /// Evaluates a network using input in inputTensors and outputs filled into outputTensors
telsoa014fcda012018-03-09 14:13:49 +0000110 virtual Status EnqueueWorkload(NetworkId networkId,
telsoa01c577f2c2018-08-31 09:22:23 +0100111 const InputTensors& inputTensors,
112 const OutputTensors& outputTensors) = 0;
telsoa014fcda012018-03-09 14:13:49 +0000113
telsoa01c577f2c2018-08-31 09:22:23 +0100114 /// Unloads a network from the IRuntime.
telsoa014fcda012018-03-09 14:13:49 +0000115 /// At the moment this only removes the network from the m_Impl->m_Network.
116 /// This might need more work in the future to be AndroidNN compliant.
telsoa01c577f2c2018-08-31 09:22:23 +0100117 /// @param [in] networkId - Unique identifier for the network to be unloaded. Generated in LoadNetwork().
telsoa014fcda012018-03-09 14:13:49 +0000118 /// @return armnn::Status
119 virtual Status UnloadNetwork(NetworkId networkId) = 0;
120
telsoa01c577f2c2018-08-31 09:22:23 +0100121 virtual const IDeviceSpec& GetDeviceSpec() const = 0;
122
123 /// Gets the profiler corresponding to the given network id.
124 /// @param networkId The id of the network for which to get the profile.
125 /// @return A pointer to the requested profiler, or nullptr if not found.
126 virtual const std::shared_ptr<IProfiler> GetProfiler(NetworkId networkId) const = 0;
telsoa014fcda012018-03-09 14:13:49 +0000127
Nattapat Chaimanowong6e948202019-03-22 14:01:46 +0000128 /// Registers a callback function to debug layers performing custom computations on intermediate tensors.
129 /// @param networkId The id of the network to register the callback.
130 /// @param func callback function to pass to the debug layer.
131 virtual void RegisterDebugCallback(NetworkId networkId, const DebugCallbackFunction& func) = 0;
132
telsoa014fcda012018-03-09 14:13:49 +0000133protected:
134 ~IRuntime() {}
135};
136
telsoa01c577f2c2018-08-31 09:22:23 +0100137using IGpuAccTunedParametersPtr = std::shared_ptr<IGpuAccTunedParameters>;
telsoa014fcda012018-03-09 14:13:49 +0000138
telsoa01c577f2c2018-08-31 09:22:23 +0100139/// Manages a set of GpuAcc parameters which have been tuned for maximum performance.
140/// Passes an instance of this object to the IRuntime::Create() method (via IRuntime::CreationOptions) to use it
141/// for all GPU workload execution.
telsoa014fcda012018-03-09 14:13:49 +0000142///
143/// Can be created in two modes:
telsoa01c577f2c2018-08-31 09:22:23 +0100144/// - In UseTunedParameters mode, the parameters stored in this object are used to execute GPU workloads.
145/// - In UpdateTunedParameters mode, additionally, whenever a GPU workload is executed for the first time, the
telsoa014fcda012018-03-09 14:13:49 +0000146/// optimum parameters will be found and stored in this object. WARNING - This tuning can be slow.
147///
telsoa01c577f2c2018-08-31 09:22:23 +0100148/// The parameters can be loaded from and saved to a file so that you can first run a slow initial read-write
telsoa014fcda012018-03-09 14:13:49 +0000149/// execution, save the parameters for later and then run fast read-only executions using the optimised parameters.
telsoa01c577f2c2018-08-31 09:22:23 +0100150class IGpuAccTunedParameters
telsoa014fcda012018-03-09 14:13:49 +0000151{
152public:
153 enum class Mode
154 {
155 UseTunedParameters,
156 UpdateTunedParameters
157 };
158
Ruomei Yan49937f32019-04-25 14:24:05 +0100159 enum class TuningLevel
160 {
161 Rapid = 0,
162 Normal = 1,
163 Exhaustive = 2
164 };
165
telsoa014fcda012018-03-09 14:13:49 +0000166 /// Creates an IClTunedParameters with the given mode.
167 /// @{
Ruomei Yan49937f32019-04-25 14:24:05 +0100168 static IGpuAccTunedParameters* CreateRaw(Mode mode, TuningLevel tunerMode);
169 static IGpuAccTunedParametersPtr Create(Mode mode, TuningLevel tunerMode);
telsoa014fcda012018-03-09 14:13:49 +0000170 /// @}
telsoa01c577f2c2018-08-31 09:22:23 +0100171 static void Destroy(IGpuAccTunedParameters* params);
telsoa014fcda012018-03-09 14:13:49 +0000172
173 /// Loads an existing set of tuned parameters from the given file.
174 /// If there is an error loading the file, an armnn::Exception is thrown.
175 virtual void Load(const char* filename) = 0;
176
177 /// Saves the current set of tuned parameters to the given file.
178 /// If there is an error saving to the file, an armnn::Exception is thrown.
179 virtual void Save(const char* filename) const = 0;
180
181protected:
telsoa01c577f2c2018-08-31 09:22:23 +0100182 virtual ~IGpuAccTunedParameters() {};
telsoa014fcda012018-03-09 14:13:49 +0000183};
184
David Monahan4f1e8e42019-09-04 09:22:10 +0100185} // namespace armnn