-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
[STFT][CPU] Improve performance of STFT for CPU by reusage RDFT jit Executor #26967
base: master
Are you sure you want to change the base?
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
} | ||
|
||
const auto& frame_size_val = (*frame_size)[0]; | ||
const auto& frame_step_val = (*frame_step)[0]; | ||
|
||
NODE_SHAPE_INFER_CHECK(op, | ||
input_shapes, | ||
0 < frame_size_val && frame_size_val < signal_shape[1].get_interval().get_max_val(), | ||
0 < frame_size_val && (signal_shape[1].is_static() |
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.
Just to check:
If single_shapep[1]
is 1
and frame_size_val
is one also the check will fail but in error message there will be
... size is 1 but must be in range [1, 1]
Also check check the error message as signal_shape[1]
can also be interval value and then in message can be:
in range [1, (2,3)]
Details:
Tickets: