Skip to content

workaround for circular dependency #192

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

Merged
merged 1 commit into from
May 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions mkl_fft/interfaces/numpy_fft.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

# Added for completing the namespaces
from numpy.fft import fftfreq, fftshift, ifftshift, rfftfreq

# pylint: disable=no-name-in-module
from ._numpy_fft import (
fft,
Expand Down Expand Up @@ -60,8 +57,11 @@
"irfftn",
"hfft",
"ihfft",
"fftshift",
"ifftshift",
"fftfreq",
"rfftfreq",
]

# It is important to put the following import here to avoid circular imports
# when patching numpy with mkl_fft
# Added for completing the namespaces
from numpy.fft import fftfreq, fftshift, ifftshift, rfftfreq

__all__ += ["fftshift", "ifftshift", "fftfreq", "rfftfreq"]
Loading