Skip to content

Partial Value Optimization #27555

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Conversation

e-nugmanova
Copy link
Contributor

Details:

  • Partial Value optimization was already capable of optimizing multiple value sources. This time we strive to reuse singular values in the construction of multi-values so that we minimize ShapeOf op number and minimize ShapeOf sub-graphs. Additionally, this time we prioritize static values over symbol for the case when value has both

Signed-off-by: Evgeniia Nugmanova <[email protected]>
@e-nugmanova e-nugmanova requested a review from a team as a code owner November 14, 2024 09:34
@e-nugmanova e-nugmanova requested review from itikhono and removed request for a team November 14, 2024 09:34
@github-actions github-actions bot added the category: transformations OpenVINO Runtime library - Transformations label Nov 14, 2024
Signed-off-by: Evgeniia Nugmanova <[email protected]>
Evgeniia Nugmanova added 3 commits November 21, 2024 12:39
Signed-off-by: Evgeniia Nugmanova <[email protected]>
Signed-off-by: Evgeniia Nugmanova <[email protected]>
@e-nugmanova e-nugmanova requested a review from praasz November 21, 2024 08:43
Evgeniia Nugmanova added 2 commits November 22, 2024 14:01
Signed-off-by: Evgeniia Nugmanova <[email protected]>
continue;
auto symbol = d.get_symbol();
if (symbol == nullptr)
if (d.is_static() || d.get_symbol() == nullptr)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
if (d.is_static() || d.get_symbol() == nullptr)
if (d.is_static() || !d.has_symbol())

Maybe has_symbol should be updated and static Dimension shouldn't have symbol?

Evgeniia Nugmanova added 2 commits November 23, 2024 11:35
Signed-off-by: Evgeniia Nugmanova <[email protected]>
@e-nugmanova e-nugmanova requested review from a team as code owners November 23, 2024 07:36
@github-actions github-actions bot added the category: CPU OpenVINO CPU plugin label Nov 23, 2024
Copy link
Contributor

This PR will be closed in a week because of 2 weeks of no activity.

@github-actions github-actions bot added the Stale label Dec 22, 2024
Evgeniia Nugmanova added 3 commits December 23, 2024 14:02
@github-actions github-actions bot added the category: Core OpenVINO Core (aka ngraph) label Dec 23, 2024
Evgeniia Nugmanova added 2 commits December 24, 2024 12:34
Signed-off-by: Evgeniia Nugmanova <[email protected]>
@e-nugmanova e-nugmanova requested a review from praasz December 26, 2024 07:35
@github-actions github-actions bot removed the Stale label Dec 27, 2024
Evgeniia Nugmanova added 2 commits December 27, 2024 11:10
Signed-off-by: Evgeniia Nugmanova <[email protected]>
Copy link
Contributor

This PR will be closed in a week because of 2 weeks of no activity.

@github-actions github-actions bot added the Stale label Jan 11, 2025
@github-actions github-actions bot removed the Stale label Jan 14, 2025
Copy link
Contributor

This PR will be closed in a week because of 2 weeks of no activity.

@github-actions github-actions bot added the Stale label Jan 28, 2025
Copy link
Contributor

github-actions bot commented Feb 7, 2025

This PR was closed because it has been stalled for 2 week with no activity.

@github-actions github-actions bot closed this Feb 7, 2025
@e-nugmanova e-nugmanova deleted the partial_value_optimization branch May 11, 2025 12:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
category: Core OpenVINO Core (aka ngraph) category: CPU OpenVINO CPU plugin category: transformations OpenVINO Runtime library - Transformations Stale
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants