Skip to content

Commit

Permalink
fix debug
Browse files Browse the repository at this point in the history
  • Loading branch information
evkotov committed Mar 16, 2023
1 parent ca122e8 commit 64b1fa6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/plugins/intel_gna/src/debug_new_pass.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ void DebugVisualize(ov::pass::Manager& manager, const std::string& name) {
static unsigned counter = 0;
std::stringstream ss;
#ifdef DEBUG_VISUALIZETREE
ss << counter << name << ".png";
ss << counter << "_" << name << ".png";
manager.register_pass<ov::pass::VisualizeTree>(ss.str());
#else
ss << counter << name;
ss << counter << "_" << name;
manager.register_pass<ov::pass::Serialize>(ss.str() + ".xml", ss.str() + ".bin");
#endif
++counter;
Expand Down

0 comments on commit 64b1fa6

Please sign in to comment.