aboutsummaryrefslogtreecommitdiff
path: root/include/armnn/IRuntime.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/armnn/IRuntime.hpp')
-rw-r--r--include/armnn/IRuntime.hpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/include/armnn/IRuntime.hpp b/include/armnn/IRuntime.hpp
index 34487d5b76..0366663841 100644
--- a/include/armnn/IRuntime.hpp
+++ b/include/armnn/IRuntime.hpp
@@ -115,10 +115,17 @@ public:
UpdateTunedParameters
};
+ enum class TuningLevel
+ {
+ Rapid = 0,
+ Normal = 1,
+ Exhaustive = 2
+ };
+
/// Creates an IClTunedParameters with the given mode.
/// @{
- static IGpuAccTunedParameters* CreateRaw(Mode mode);
- static IGpuAccTunedParametersPtr Create(Mode mode);
+ static IGpuAccTunedParameters* CreateRaw(Mode mode, TuningLevel tunerMode);
+ static IGpuAccTunedParametersPtr Create(Mode mode, TuningLevel tunerMode);
/// @}
static void Destroy(IGpuAccTunedParameters* params);