From 083a069a75278fd0312aaecff8c9c73dfe4010c5 Mon Sep 17 00:00:00 2001 From: Michalis Spyrou Date: Mon, 13 May 2019 15:35:50 +0100 Subject: COMPMID-1995: Change CLTuner default mode to NORMAL Change-Id: I96a5fc460d5e403fcc4b64002ed4c71606c732f0 Signed-off-by: Michalis Spyrou Reviewed-on: https://review.mlplatform.org/c/1118 Reviewed-by: Gian Marco Iodice Comments-Addressed: Arm Jenkins Tested-by: Arm Jenkins --- utils/CommonGraphOptions.cpp | 2 +- utils/CommonGraphOptions.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'utils') diff --git a/utils/CommonGraphOptions.cpp b/utils/CommonGraphOptions.cpp index 7334d038ba..e2ca98a7dd 100644 --- a/utils/CommonGraphOptions.cpp +++ b/utils/CommonGraphOptions.cpp @@ -158,7 +158,7 @@ CommonGraphOptions::CommonGraphOptions(CommandLineParser &parser) target = parser.add_option>("target", supported_targets, Target::NEON); data_type = parser.add_option>("type", supported_data_types, DataType::F32); data_layout = parser.add_option>("layout", supported_data_layouts); - tuner_mode = parser.add_option>("tuner-mode", supported_tuner_modes, CLTunerMode::EXHAUSTIVE); + tuner_mode = parser.add_option>("tuner-mode", supported_tuner_modes, CLTunerMode::NORMAL); help->set_help("Show this help message"); threads->set_help("Number of threads to use"); diff --git a/utils/CommonGraphOptions.h b/utils/CommonGraphOptions.h index d81cd8fbdb..826cca1be9 100644 --- a/utils/CommonGraphOptions.h +++ b/utils/CommonGraphOptions.h @@ -94,7 +94,7 @@ struct CommonGraphParams arm_compute::DataType data_type{ DataType::F32 }; arm_compute::DataLayout data_layout{ DataLayout::NHWC }; bool enable_tuner{ false }; - arm_compute::CLTunerMode tuner_mode{ CLTunerMode::EXHAUSTIVE }; + arm_compute::CLTunerMode tuner_mode{ CLTunerMode::NORMAL }; arm_compute::graph::FastMathHint fast_math_hint{ arm_compute::graph::FastMathHint::Disabled }; std::string data_path{}; std::string image{}; -- cgit v1.2.1