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