Skip to content
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

ValueError when s paramter is passed to irfftn #135

Closed
vtavana opened this issue Mar 13, 2025 · 0 comments · Fixed by #138
Closed

ValueError when s paramter is passed to irfftn #135

vtavana opened this issue Mar 13, 2025 · 0 comments · Fixed by #138
Assignees

Comments

@vtavana
Copy link
Collaborator

vtavana commented Mar 13, 2025

The following example works with NumPy but not with mkl_fft.

import numpy
x = numpy.random.random((30, 20, 10))
numpy.fft.fftn(x, s=(10, 20, 10), axes=(0, 1, 2)).shape
# (10, 20, 10)

import mkl_fft, numpy
x = numpy.random.random((30, 20, 10))
mkl_fft.irfftn(x, s=(10, 20, 10), axes=(0, 1, 2)).shape
# ...
# ValueError: could not broadcast input array from shape (10,20) into shape (30,20)
@vtavana vtavana self-assigned this Mar 13, 2025
@vtavana vtavana linked a pull request Mar 25, 2025 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant