Skip to content

Commit

Permalink
Fixed leftovers after PR 7336 (openvinotoolkit#7355)
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyachur authored and akuporos committed Sep 29, 2021
1 parent 0070d27 commit 687b6f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ngraph/core/src/op/abs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#include "ngraph/runtime/host_tensor.hpp"
#include "ngraph/runtime/reference/abs.hpp"

NGRAPH_RTTI_DEFINITION(ov::op::v0::Abs, "Abs", 0);
OPENVINO_RTTI_DEFINITION(ov::op::v0::Abs, "Abs", 0, util::UnaryElementwiseArithmetic);

ov::op::v0::Abs::Abs(const Output<Node>& arg) : UnaryElementwiseArithmetic(arg) {
constructor_validate_and_infer_types();
Expand Down
2 changes: 1 addition & 1 deletion ngraph/core/src/op/acos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#include "ngraph/runtime/host_tensor.hpp"
#include "ngraph/runtime/reference/acos.hpp"

NGRAPH_RTTI_DEFINITION(ov::op::v0::Acos, "Acos", 0);
OPENVINO_RTTI_DEFINITION(ov::op::v0::Acos, "Acos", 0, util::UnaryElementwiseArithmetic);

ov::op::v0::Acos::Acos(const Output<Node>& arg) : UnaryElementwiseArithmetic(arg) {
constructor_validate_and_infer_types();
Expand Down

0 comments on commit 687b6f9

Please sign in to comment.