-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
[Op] ISTFT op class, shape infer and reference #28606
base: master
Are you sure you want to change the base?
[Op] ISTFT op class, shape infer and reference #28606
Conversation
#include <vector> | ||
|
||
#include "openvino/core/shape.hpp" | ||
#include "openvino/reference/fft.hpp" |
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.
Include for reference/fft.hpp may not be needed.
/// \brief Constructs an ISTFT operation with signal length provided | ||
/// | ||
/// \param data Input data | ||
/// \param window Window values applied in STFT |
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.
/// \param window Window values applied in STFT | |
/// \param window Window values applied in ISTFT |
Inconsistent with doc doc for previous constructor
name << obj.param.frame_step.shape; | ||
name << "_lentgh_input_type_"; | ||
name << obj.param.frame_step.type; | ||
name << "_lebgth_shape_"; |
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.
name << "_lebgth_shape_"; | |
name << "_length_shape_"; |
Details:
Tickets: