-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
[TRANSFORMATIONS] Remove usages of legacy names in transformations #26855
base: master
Are you sure you want to change the base?
Conversation
Not removing the functions themselves as they're still used in |
could you try to delete it from these places? |
Sure. Not removed entirely, but moved to the corresponding files as static functions per the following comment by @ilya-lavrenov: |
right, places where IR v10 is used, still need to keep this legacy logic with names. So, keeping them closer to places where they are used - right strategy :) |
src/common/transformations/src/transformations/control_flow/unroll_if.cpp
Outdated
Show resolved
Hide resolved
### Details: - Remove legacy name from tensor descriptor ### Related PR: - #26855 ### Tickets: - CVS-156182 --------- Signed-off-by: Pawel Raasz <[email protected]>
Remove usages of deprecated legacy names in transformations. - Tickets: * CVS-153733
8742062
to
fc11417
Compare
OPENVINO_SUPPRESS_DEPRECATED_START | ||
output_0.get_node_shared_ptr()->set_friendly_name(op::util::create_ie_output_name(nms_9->output(0))); | ||
OPENVINO_SUPPRESS_DEPRECATED_END | ||
output_0.get_node_shared_ptr()->set_friendly_name( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do these friendly names still need to be set?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the tests
The tests should pass now, however still blocked by Nvidia plugin. |
[TRANSFORMATIONS] Remove usages of legacy names in transformations
Remove usages of deprecated legacy names in transformations.
Related PR:
Tickets: