-
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
Move all a ops to ov #7336
Move all a ops to ov #7336
Conversation
4d1baa7
to
5d646ac
Compare
@@ -18,30 +18,27 @@ | |||
#include "ngraph/runtime/host_tensor.hpp" | |||
#include "ngraph/runtime/reference/acos.hpp" | |||
|
|||
using namespace std; | |||
using namespace ngraph; | |||
NGRAPH_RTTI_DEFINITION(ov::op::v0::Acos, "Acos", 0); |
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.
NGRAPH_RTTI_DEFINITION(ov::op::v0::Acos, "Acos", 0); | |
OPENVINO_RTTI_DEFINITION(ov::op::v0::Acos, "Acos", 0, util::UnaryElementwiseArithmetic); |
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.
Thanks, I will fix it in the separate PR.
@@ -10,30 +10,27 @@ | |||
#include "ngraph/runtime/host_tensor.hpp" | |||
#include "ngraph/runtime/reference/abs.hpp" | |||
|
|||
using namespace std; | |||
using namespace ngraph; | |||
NGRAPH_RTTI_DEFINITION(ov::op::v0::Abs, "Abs", 0); |
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.
NGRAPH_RTTI_DEFINITION(ov::op::v0::Abs, "Abs", 0); | |
OPENVINO_RTTI_DEFINITION(ov::op::v0::Abs, "Abs", 0, util::UnaryElementwiseArithmetic); |
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.
Thanks, I will fix it in the separate PR.
* 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 * Moved op utils to ov namespace * Fixed ngraph library build * Fixed unit-tests * Changed src folder * Fixed recurrent_sequence * Changed low latency * Fixed serialize * Fixed ieFuncTests * Try to fix windows * Remove custom operator<< from tests * Fixed build * Moved operations from A to ov namespace
* 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 * Moved op utils to ov namespace * Fixed ngraph library build * Fixed unit-tests * Changed src folder * Fixed recurrent_sequence * Changed low latency * Fixed serialize * Fixed ieFuncTests * Try to fix windows * Remove custom operator<< from tests * Fixed build * Moved operations from A to ov namespace
Details: