Skip to content

Commit

Permalink
[Fix][STFT] OPENVINO_OP macro for STFT with opset15 (openvinotoolkit#…
Browse files Browse the repository at this point in the history
…27386)

### Details:
- Fix OPENVINO_OP macro for STFT with opset15 (without that it is
registered and serialized with version="extension" by default, and can't
be deserialized)
- It follows all of the other ops OPENVINO_OP macro, the "opset15" has
been missed for STFT
Example:
https://github.com/openvinotoolkit/openvino/blob/4d8ff86bd2e853b84a28acd2ece1836d28523f9e/src/core/include/openvino/op/slice_scatter.hpp#L17
 
 

### Tickets:
 - 156667
  • Loading branch information
mitruska authored Nov 4, 2024
1 parent 7800a03 commit d69ac00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/include/openvino/op/stft.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace v15 {
/// \ingroup ov_ops_cpp_api
class OPENVINO_API STFT : public Op {
public:
OPENVINO_OP("STFT");
OPENVINO_OP("STFT", "opset15");
STFT() = default;

/// \brief Constructs a STFT operation.
Expand Down

0 comments on commit d69ac00

Please sign in to comment.