Skip to content

Commit

Permalink
Modify OPENVINO_OP using, caused by deprecated version (openvinotoolk…
Browse files Browse the repository at this point in the history
…it#598)

* Modify OPENVINO_OP using, caused by deprecated version

Signed-off-by: xuejun <[email protected]>

* Fix review comments

Signed-off-by: xuejun <[email protected]>

---------

Signed-off-by: xuejun <[email protected]>
Co-authored-by: Ilya Lavrenov <[email protected]>
  • Loading branch information
zhaixuejun1993 and ilya-lavrenov authored Feb 22, 2023
1 parent 95e9bc3 commit aa4429c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/arm_plugin/src/opset/pool_arm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace v1 {

class ArmMaxPool : public ov::op::v1::MaxPool {
public:
OPENVINO_OP("ArmMaxPool", "arm_opset", ov::op::v1::MaxPool, 1);
OPENVINO_OP("ArmMaxPool", "arm_opset1", ov::op::v1::MaxPool);

ArmMaxPool(const ov::Output<Node>& arg,
const ov::Strides& strides,
Expand All @@ -33,7 +33,7 @@ class ArmMaxPool : public ov::op::v1::MaxPool {

class ArmAvgPool : public ov::op::v1::AvgPool {
public:
OPENVINO_OP("ArmAvgPool", "arm_opset", ov::op::v1::AvgPool, 1);
OPENVINO_OP("ArmAvgPool", "arm_opset1", ov::op::v1::AvgPool);

ArmAvgPool(const ov::Output<Node>& arg,
const ov::Strides& strides,
Expand All @@ -56,7 +56,7 @@ class ArmAvgPool : public ov::op::v1::AvgPool {
namespace v8 {
class ArmMaxPool : public ov::op::v8::MaxPool {
public:
OPENVINO_OP("ArmMaxPool", "arm_opset", ov::op::v8::MaxPool, 8);
OPENVINO_OP("ArmMaxPool", "arm_opset8", ov::op::v8::MaxPool);

ArmMaxPool(const ov::Output<Node>& arg,
const ov::Strides& strides,
Expand Down

0 comments on commit aa4429c

Please sign in to comment.