From 8b194fbe79d44cba566ad8b508d1c8902987ae3c Mon Sep 17 00:00:00 2001 From: Ruomei Yan Date: Fri, 3 May 2019 12:10:19 +0100 Subject: IVGCVSW-3003 Fix the bug in setting the same tuningLevel in the constructor Change-Id: I53bd3a8e8f846edbebb1598559f3541698e647e5 Signed-off-by: Ruomei Yan --- src/backends/cl/ClContextControl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backends/cl/ClContextControl.cpp b/src/backends/cl/ClContextControl.cpp index 268430ec6b..2ffece4ac3 100644 --- a/src/backends/cl/ClContextControl.cpp +++ b/src/backends/cl/ClContextControl.cpp @@ -212,7 +212,7 @@ void IGpuAccTunedParameters::Destroy(IGpuAccTunedParameters* params) ClTunedParameters::ClTunedParameters(armnn::IGpuAccTunedParameters::Mode mode, armnn::IGpuAccTunedParameters::TuningLevel tuningLevel) : m_Mode(mode) - , m_TuningLevel(ClTunedParameters::TuningLevel::Rapid) + , m_TuningLevel(tuningLevel) , m_Tuner(mode == ClTunedParameters::Mode::UpdateTunedParameters) { } -- cgit v1.2.1