Skip to content

Commit

Permalink
[CONFORMANCE] Remove extra print from op_summary (openvinotoolkit#17336)
Browse files Browse the repository at this point in the history
  • Loading branch information
iefode authored May 3, 2023
1 parent 9291e5e commit 7aea8d6
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,6 @@ void OpSummary::saveReport() {
pugi::xml_node opsNode = root.append_child("ops_list");
for (const auto &op : opsInfo) {
std::string name = std::string(op.first.name) + "-" + getOpVersion(op.first.version_id);
std::cout << name << " " << op.second << std::endl;
opsNode.append_child(name.c_str()).append_attribute("opsets").set_value(op.second.c_str());
}

Expand Down

0 comments on commit 7aea8d6

Please sign in to comment.