-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Moved ngraph::Node to ov namespace #7240
Conversation
/// TODO: Make a plan to deprecate this. | ||
Output(const std::shared_ptr<Node>& node, size_t index); |
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.
I understand this and other TODO
comments are copied from the original file, but maybe we have a good moment to review and update such info to have a clear situation about deprecation plans.
I don't mean it's needed in this PR but still related.
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.
I will do it in the separate PR. it affects a lot of places
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.
I don't see any reason to remove this c-tor as in most cases we are working with std::shared_ptr<Node>
but not with Node *
so it is more convenient and doesn't have any side-effects.
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.
As I already said, I tried to deprecate this constructor, but it affects several places. I don't want to mix these changes in this PR.
...engine/src/transformations/src/transformations/common_optimizations/strides_optimization.cpp
Outdated
Show resolved
Hide resolved
/// TODO: Make a plan to deprecate this. | ||
Output(const std::shared_ptr<Node>& node, size_t index); |
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.
I don't see any reason to remove this c-tor as in most cases we are working with std::shared_ptr<Node>
but not with Node *
so it is more convenient and doesn't have any side-effects.
* Moved ngraph::Node to ov namespace * Fixed code style * Fixed VPU * Fixed GNA * Fixed tests * Added aliases for backward compatibility * Fix clDNN * Try to fix build * Fixed comment * Renamed RTTI macros
No description provided.