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)
5
5
6
-
`mkl_fft` started as a part of Intel (R) Distribution for Python* optimizations to NumPy, and is now being released
7
-
as a stand-alone package. It can be installed into conda environment using
6
+
`mkl_fft` started as a part of Intel® Distribution for Python* optimizations to NumPy, and is now being released
7
+
as a stand-alone package. It can be installed into conda environment from Intel's channel using:
If command above installs NumPy package from the Pypi, please use following command to install Intel optimized NumPy wheel package from Intel Pypi Cloud:
27
+
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:
63
63
64
-
`ifftn(x, n=None, axes=None, overwrite_x=False)`
64
+
`rfft(x, n=None, axis=-1, fwd_scale=1.0, out=out)` - r2c 1D FFT, similar to `numpy.fft.rfft`
65
65
66
-
### Real transforms
66
+
`rfft2(x, s=None, axes=(-2, -1), fwd_scale=1.0, out=out)` - r2c 2D FFT, similar to `numpy.fft.rfft2`
67
67
68
-
`rfftpack(x, n=None, axis=-1, overwrite_x=False)` - real 1D Fourier transform, like `scipy.fftpack.rfft`
68
+
`rfftn(x, s=None, axes=None, fwd_scale=1.0, out=out)` - r2c ND FFT, similar to `numpy.fft.rfftn`
69
69
70
-
`rfft(x, n=None, axis=-1)` - real 1D Fourier transform, like `numpy.fft.rfft`
70
+
`rfftpack(x, n=None, axis=-1, overwrite_x=False, fwd_scale=1.0)` - r2c 1D FFT, similar to `scipy.fftpack.rfft`
71
71
72
-
`rfft2(x, s=None, axes=(-2,-1))` - real 2D Fourier transform, like `numpy.fft.rfft2`
72
+
and similar inverse c2r FFT (`irfft*`) functions.
73
73
74
-
`rfftn(x, s=None, axes=None)` - real ND Fourier transform, like `numpy.fft.rfftn`
75
-
76
-
... and similar `irfft*` functions.
77
-
78
-
79
-
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.
74
+
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.
80
75
81
76
---
82
77
83
-
To build `mkl_fft` from sources on Linux:
78
+
To build `mkl_fft` from sources on Linux with Intel® OneMKL:
0 commit comments