Skip to content

Commit

Permalink
[Snippets][CPU] Mark serialized data flow graph as exec_graph (#28480)
Browse files Browse the repository at this point in the history
### Details:
Add property to serialized data flow graph to be treated as exec_graph
in order to apply type substitution from runtime info

### Tickets:
 - 160593
  • Loading branch information
aobolensk authored Jan 16, 2025
1 parent 9777fb8 commit 9149f63
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ bool SerializeDataFlow::run(const LinearIR& linear_ir) {
}
if (ov::is_type<ov::op::v0::Parameter>(node)) {
const auto parameter = std::make_shared<ov::op::v0::Parameter>(element::f32, Shape{});
parameter->get_rt_info()["execTimeMcs"] = 0;
ops_map[expr] = parameter;
parameters.push_back(parameter);
} else if (ov::is_type<ov::op::v0::Result>(node)) {
Expand Down

0 comments on commit 9149f63

Please sign in to comment.