diff --git a/src/core/include/openvino/pass/manager.hpp b/src/core/include/openvino/pass/manager.hpp index 608531fdbe0621..a026957697f2db 100644 --- a/src/core/include/openvino/pass/manager.hpp +++ b/src/core/include/openvino/pass/manager.hpp @@ -24,10 +24,10 @@ class OPENVINO_API Manager { virtual ~Manager(); //// \brief Construct Manager with a provided name. - explicit Manager(std::string name); + explicit Manager(std::string name); //// \brief Construct Manager with shared PassConfig instance - explicit Manager(std::shared_ptr pass_config, std::string name = "UnnamedManager"); + explicit Manager(std::shared_ptr pass_config, std::string name = "UnnamedManager"); /// \brief Register given transformation class type to execution list /// Example below show the basic usage of pass::Manager @@ -101,8 +101,7 @@ class OPENVINO_API Manager { std::string m_name = "UnnamedManager"; private: - bool run_pass(const std::shared_ptr& pass, const std::shared_ptr& model, - bool needs_validate); + bool run_pass(const std::shared_ptr& pass, const std::shared_ptr& model, bool needs_validate); }; } // namespace pass } // namespace ov diff --git a/src/core/src/pass/manager.cpp b/src/core/src/pass/manager.cpp index c8151c11888199..ca75e67152d00e 100644 --- a/src/core/src/pass/manager.cpp +++ b/src/core/src/pass/manager.cpp @@ -69,7 +69,7 @@ class EnvVar { /** * @brief This ctor helps to activate/deactivate EnvVar from the code. - */ + */ explicit EnvVar(const std::string& var, bool activate) { m_is_bool = true; b_value = activate; @@ -174,8 +174,8 @@ class Profiler { std::cout << name << " " << stopwatch.get_milliseconds() << "ms " << (applied ? "+" : "-") << std::endl; } else if (m_file.is_open()) { if (is_pass_manager) { - m_file << "m;" << name << ";" << stopwatch.get_timer_value().count() << ";" - << (applied ? "1" : "0") << std::endl; + m_file << "m;" << name << ";" << stopwatch.get_timer_value().count() << ";" << (applied ? "1" : "0") + << std::endl; } else { m_file << "t;" << name << ";" << m_manager_name << ";" << stopwatch.get_timer_value().count() << ";" << (applied ? "1" : "0") << std::endl;