Skip to content

Commit

Permalink
Make scalar names unique again
Browse files Browse the repository at this point in the history
  • Loading branch information
smirnov-alexey committed Sep 11, 2024
1 parent 90d1219 commit 5bf6a38
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,8 @@ class Partitioner {
if (!ov::is_type<ov::op::v0::Constant>(node_ptr)) {
OPENVINO_THROW("NPUW: trying to get a unique name of a non-Constant node");
}
return node_ptr->get_friendly_name() + " with meta " + ov::npuw::online::util::getMetaDesc(node_ptr);
return node_ptr->get_friendly_name() + " with meta " + ov::npuw::online::util::getMetaDesc(node_ptr) +
" with output " + (*node_ptr->output(0).get_target_inputs().begin()).get_node()->description();
}

public:
Expand Down

0 comments on commit 5bf6a38

Please sign in to comment.