From afd38f0c617d6f89b2b4532c6c44f116617e2b6f Mon Sep 17 00:00:00 2001 From: Felix Thomasmathibalan Date: Wed, 27 Sep 2023 17:46:17 +0100 Subject: Apply clang-format on repository Code is formatted as per a revised clang format configuration file(not part of this delivery). Version 14.0.6 is used. Exclusion List: - files with .cl extension - files that are not strictly C/C++ (e.g. Android.bp, Sconscript ...) And the following directories - compute_kernel_writer/validation/ - tests/ - include/ - src/core/NEON/kernels/convolution/ - src/core/NEON/kernels/arm_gemm/ - src/core/NEON/kernels/arm_conv/ - data/ There will be a follow up for formatting of .cl files and the files under tests/ and compute_kernel_writer/validation/. Signed-off-by: Felix Thomasmathibalan Change-Id: Ib7eb1fcf4e7537b9feaefcfc15098a804a3fde0a Reviewed-on: https://review.mlplatform.org/c/ml/ComputeLibrary/+/10391 Benchmark: Arm Jenkins Tested-by: Arm Jenkins Reviewed-by: Gunes Bayir --- utils/command_line/EnumListOption.h | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) (limited to 'utils/command_line/EnumListOption.h') diff --git a/utils/command_line/EnumListOption.h b/utils/command_line/EnumListOption.h index f4ee283528..6c4146fa75 100644 --- a/utils/command_line/EnumListOption.h +++ b/utils/command_line/EnumListOption.h @@ -25,7 +25,6 @@ #define ARM_COMPUTE_UTILS_ENUMLISTOPTION #include "Option.h" - #include #include #include @@ -57,7 +56,7 @@ public: */ EnumListOption(std::string name, std::set allowed_values, std::initializer_list &&default_values); - bool parse(std::string value) override; + bool parse(std::string value) override; std::string help() const override; /** Get the values of the option. @@ -73,13 +72,17 @@ private: template inline EnumListOption::EnumListOption(std::string name, std::set allowed_values) - : Option{ std::move(name) }, _allowed_values{ std::move(allowed_values) } + : Option{std::move(name)}, _allowed_values{std::move(allowed_values)} { } template -inline EnumListOption::EnumListOption(std::string name, std::set allowed_values, std::initializer_list &&default_values) - : Option{ std::move(name), false, true }, _values{ std::forward>(default_values) }, _allowed_values{ std::move(allowed_values) } +inline EnumListOption::EnumListOption(std::string name, + std::set allowed_values, + std::initializer_list &&default_values) + : Option{std::move(name), false, true}, + _values{std::forward>(default_values)}, + _allowed_values{std::move(allowed_values)} { } @@ -90,10 +93,10 @@ bool EnumListOption::parse(std::string value) _values.clear(); _is_set = true; - std::stringstream stream{ value }; + std::stringstream stream{value}; std::string item; - while(!std::getline(stream, item, ',').fail()) + while (!std::getline(stream, item, ',').fail()) { try { @@ -102,9 +105,9 @@ bool EnumListOption::parse(std::string value) item_stream >> typed_value; - if(!item_stream.fail()) + if (!item_stream.fail()) { - if(_allowed_values.count(typed_value) == 0) + if (_allowed_values.count(typed_value) == 0) { _is_set = false; continue; @@ -115,7 +118,7 @@ bool EnumListOption::parse(std::string value) _is_set = _is_set && !item_stream.fail(); } - catch(const std::invalid_argument &) + catch (const std::invalid_argument &) { _is_set = false; } @@ -130,7 +133,7 @@ std::string EnumListOption::help() const std::stringstream msg; msg << "--" + name() + "={"; - for(const auto &value : _allowed_values) + for (const auto &value : _allowed_values) { msg << value << ","; } -- cgit v1.2.1