Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/core/dev_api/openvino/xml_util/xml_serialize_util.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class OPENVINO_API XmlSerializer : public ov::AttributeVisitor {
virtual void append_rt_info(pugi::xml_node& node, ov::RTMap& attributes);
virtual bool append_rt_attribute(pugi::xml_node& node, const ov::RuntimeAttribute& attribute);
virtual bool append_node_attributes(ov::Node& node);
virtual util::ConstantWriter& get_constant_write_handler() const {
virtual util::ConstantWriter& get_constant_write_handler() {
return m_constant_node_write_handler;
}

Expand Down
4 changes: 0 additions & 4 deletions src/core/src/xml_util/xml_serialize_util.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1061,10 +1061,6 @@ bool XmlSerializer::append_node_attributes(ov::Node& node) {
return node.visit_attributes(*this);
}

// util::ConstantWriter& XmlSerializer::get_constant_write_handler() {
// return m_constant_node_write_handler.get();
// }

std::string get_ir_precision_name(const element::Type& precision) {
switch (precision) {
case ov::element::dynamic:
Expand Down
1 change: 1 addition & 0 deletions src/core/tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ ov_add_test_target(
Threads::Threads
openvino::conditional_compilation
openvino::runtime::dev
openvino::xml_util
ADD_CLANG_FORMAT
LABELS
OV UNIT CORE
Expand Down
Loading
Loading