We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db22d63 commit 1e79b84Copy full SHA for 1e79b84
array_api_compat/dask/array/__init__.py
@@ -6,3 +6,4 @@
6
__array_api_version__ = '2022.12'
7
8
__import__(__package__ + '.linalg')
9
+__import__(__package__ + '.fft')
array_api_compat/dask/array/fft.py
@@ -1,8 +1,8 @@
1
from dask.array.fft import * # noqa: F403
2
from numpy.fft import __all__ as fft_all
3
4
-from ..common import _fft
5
-from .._internal import get_xp
+from ...common import _fft
+from ..._internal import get_xp
import dask.array as da
0 commit comments