Skip to content

Commit

Permalink
Fixed double free due to missing return statement in Partitioner::run…
Browse files Browse the repository at this point in the history
…_on_model (#145)
  • Loading branch information
slyalin authored Jul 22, 2024
1 parent 147e190 commit 3f0b845
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,7 @@ class Partitioner : public ov::pass::ModelPass {
tracker.add_node(node, get_subgraph_mark(node));
}
tracker.finalize();
return true;
}
};

Expand Down

0 comments on commit 3f0b845

Please sign in to comment.