Skip to content

Commit

Permalink
[CPU] RoPE added to extension list. (openvinotoolkit#23268)
Browse files Browse the repository at this point in the history
### Details:
- *RoPE node from the CPU opset was added to the extensions list. That
fixes model deserialization from cache.*

### Tickets:
 - *Part of the task 127331*
  • Loading branch information
nshchego authored Mar 5, 2024
1 parent cfb27d7 commit 1c5a736
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/plugins/intel_cpu/src/extension.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include "transformations/cpu_opset/common/op/leaky_relu.hpp"
#include "transformations/cpu_opset/common/op/ngram.hpp"
#include "transformations/cpu_opset/common/op/power_static.hpp"
#include "transformations/cpu_opset/common/op/rope.hpp"
#include "transformations/cpu_opset/common/op/sdpa.hpp"
#include "transformations/cpu_opset/common/op/swish_cpu.hpp"
#include "transformations/cpu_opset/x64/op/interaction.hpp"
Expand Down Expand Up @@ -67,6 +68,7 @@ class TypeRelaxedExtension : public ov::OpExtension<ov::op::TypeRelaxed<Op>> {
OP_EXTENSION(ov::intel_cpu::FullyConnectedNode) \
OP_EXTENSION(ov::intel_cpu::LeakyReluNode) \
OP_EXTENSION(ov::intel_cpu::PowerStaticNode) \
OP_EXTENSION(ov::intel_cpu::RoPENode) \
OP_EXTENSION(ov::intel_cpu::SwishNode) \
OP_EXTENSION(ov::intel_cpu::NgramNode) \
OP_EXTENSION(ov::op::internal::NonMaxSuppressionIEInternal) \
Expand Down

0 comments on commit 1c5a736

Please sign in to comment.