Skip to content

Commit

Permalink
codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
itikhono committed Jul 25, 2024
1 parent 47148c0 commit 2c42795
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/core/src/pass/manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ class Profiler {
std::cout << " ";
}
std::cout << std::setw(60) << left << name;
std::cout << std::setw(5) << right << stopwatch.get_milliseconds() << "ms "
<< (applied ? "+" : "-") << std::endl;
std::cout << std::setw(5) << right << 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")
Expand All @@ -190,7 +190,6 @@ class Profiler {
OPENVINO_THROW("The output file for recording transformation statistics is closed. "
"Recording of the statistics is not possible.")
}

}
}

Expand Down

0 comments on commit 2c42795

Please sign in to comment.