-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
ifft2_function #21742
ifft2_function #21742
Conversation
Thanks for contributing to Ivy! 😊👏 |
If you are working on an open task, please edit the PR description to link to the issue you've created. For more information, please check ToDo List Issues Guide. Thank you 🤗 |
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.
Hey @teckno
Check the comments below 😊
Thanks
@@ -100,3 +100,6 @@ def ifftshift(x, axes=None, name=None): | |||
roll = ivy.roll(x, shifts, axis=axes) | |||
|
|||
return roll | |||
@to_ivy_arrays_and_back | |||
def ifft2(x, n=None, axis=(-2, -1), norm="backward", name=None): | |||
return ifft2(x, n, axis, norm) |
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.
There is no call from Ivy this seems to be a recursive call of the same function🙄 also this function isn't implemented on the Ivy API, yet you can use ifftn
to implement this function
close #21741