aboutsummaryrefslogtreecommitdiff
path: root/src/backends/cl/ClBackendContext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/cl/ClBackendContext.cpp')
-rw-r--r--src/backends/cl/ClBackendContext.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/backends/cl/ClBackendContext.cpp b/src/backends/cl/ClBackendContext.cpp
index 22a4ceabd3..125f01b627 100644
--- a/src/backends/cl/ClBackendContext.cpp
+++ b/src/backends/cl/ClBackendContext.cpp
@@ -118,12 +118,15 @@ void ConfigureTuner(arm_compute::CLTuner &tuner, TuningLevel level)
switch (level)
{
case TuningLevel::Rapid:
+ ARMNN_LOG(info) << "Gpu tuning is activated. TuningLevel: Rapid (1)";
tuner.set_tuner_mode(arm_compute::CLTunerMode::RAPID);
break;
case TuningLevel::Normal:
+ ARMNN_LOG(info) << "Gpu tuning is activated. TuningLevel: Normal (2)";
tuner.set_tuner_mode(arm_compute::CLTunerMode::NORMAL);
break;
case TuningLevel::Exhaustive:
+ ARMNN_LOG(info) << "Gpu tuning is activated. TuningLevel: Exhaustive (3)";
tuner.set_tuner_mode(arm_compute::CLTunerMode::EXHAUSTIVE);
break;
case TuningLevel::None:
@@ -205,6 +208,7 @@ ClBackendContext::ClBackendContext(const IRuntime::CreationOptions& options)
{
try
{
+ ARMNN_LOG(info) << "Loading Gpu tuning data from file: " << m_TuningFile;
m_Tuner->load_from_file(m_TuningFile.c_str());
}
catch (const std::exception& e)