From 47f227182f5243a1b5337047c92e5cf19d0c3e29 Mon Sep 17 00:00:00 2001 From: Ilya Churaev Date: Thu, 2 Sep 2021 12:56:17 +0300 Subject: [PATCH] Fixed build --- ngraph/core/src/pass/visualize_tree.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ngraph/core/src/pass/visualize_tree.cpp b/ngraph/core/src/pass/visualize_tree.cpp index 1c1040eb21e588..c6089123088fb6 100644 --- a/ngraph/core/src/pass/visualize_tree.cpp +++ b/ngraph/core/src/pass/visualize_tree.cpp @@ -379,11 +379,11 @@ std::string pass::VisualizeTree::get_constant_value(std::shared_ptr node, ss << "{" << node->get_element_type().get_type_name() << "}"; ss << pretty_partial_shape(node->get_output_partial_shape(0)); - if (!op::is_constant(node)) + if (!ngraph::op::is_constant(node)) return ss.str(); ss << "\nvalue: "; - const auto constant = ov::as_type_ptr(node); + const auto constant = ov::as_type_ptr(node); switch (constant->get_output_element_type(0)) { case element::Type_t::undefined: ss << "[ undefined value ]";