[CPU][DEBUG_CAPS] Fix build after snippets base class change (#14341)

This commit is contained in:
Egor Duplenskii 2022-12-01 10:52:52 +01:00 committed by GitHub
parent b30b3866cc
commit 0c6015f669
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -508,7 +508,7 @@ std::ostream & operator<<(std::ostream & os, const PrintableModel& model) {
// recursively output subgraphs // recursively output subgraphs
if (auto subgraph = std::dynamic_pointer_cast<ngraph::snippets::op::Subgraph>(op)) { if (auto subgraph = std::dynamic_pointer_cast<ngraph::snippets::op::Subgraph>(op)) {
os << "\t\t snippets Subgraph: " << subgraph->get_friendly_name() << " is_quantized:" << subgraph->is_quantized() << std::endl; os << "\t\t snippets Subgraph: " << subgraph->get_friendly_name() << " is_quantized:" << subgraph->is_quantized() << std::endl;
os << PrintableModel(*subgraph->get_body().get(), tag, prefix + "\t\t"); os << PrintableModel(subgraph->body(), tag, prefix + "\t\t");
} }
if (auto msubgraph = std::dynamic_pointer_cast<op::util::MultiSubGraphOp>(op)) { if (auto msubgraph = std::dynamic_pointer_cast<op::util::MultiSubGraphOp>(op)) {