You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://github.com/IntelPython/mkl_fft/actions/workflows/build_pip.yaml)
4
4
[](https://github.com/IntelPython/mkl_fft/actions/workflows/conda-package-cf.yml)
If command above installs NumPy package from the Pypi, please use following command to install Intel optimized NumPy wheel package from Intel Pypi Cloud:
28
+
If command above installs NumPy package from the PyPI, please use following command to install Intel optimized NumPy wheel package from Intel PyPI Cloud:
### real-to-complex (r2c) and complex-to-real (c2r) transforms:
64
64
65
-
`ifftn(x, n=None, axes=None, overwrite_x=False)`
65
+
`rfft(x, n=None, axis=-1, fwd_scale=1.0, out=out)` - r2c 1D FFT, similar to `numpy.fft.rfft`
66
66
67
-
### Real transforms
67
+
`rfft2(x, s=None, axes=(-2, -1), fwd_scale=1.0, out=out)` - r2c 2D FFT, similar to `numpy.fft.rfft2`
68
68
69
-
`rfftpack(x, n=None, axis=-1, overwrite_x=False)` - real 1D Fourier transform, like `scipy.fftpack.rfft`
69
+
`rfftn(x, s=None, axes=None, fwd_scale=1.0, out=out)` - r2c ND FFT, similar to `numpy.fft.rfftn`
70
70
71
-
`rfft(x, n=None, axis=-1)` - real 1D Fourier transform, like `numpy.fft.rfft`
71
+
and similar inverse c2r FFT (`irfft*`) functions.
72
72
73
-
`rfft2(x, s=None, axes=(-2,-1))` - real 2D Fourier transform, like `numpy.fft.rfft2`
74
-
75
-
`rfftn(x, s=None, axes=None)` - real ND Fourier transform, like `numpy.fft.rfftn`
76
-
77
-
... and similar `irfft*` functions.
78
-
79
-
80
-
The package also provides `mkl_fft.interfaces.numpy_fft` and `mkl_fft.interfaces.scipy_fft` interfaces which provide drop-in replacements for equivalent functions in NumPy and SciPy respectively.
73
+
The package also provides `mkl_fft.interfaces.numpy_fft` and `mkl_fft.interfaces.scipy_fft` interfaces which provide drop-in replacements for equivalent functions in NumPy and SciPy, respectively.
81
74
82
75
---
83
76
84
-
To build `mkl_fft` from sources on Linux:
77
+
To build `mkl_fft` from sources on Linux with Intel® OneMKL:
0 commit comments