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
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17-3Lines changed: 17 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,18 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
-
## [2.0.0] (05/DD/2025)
7
+
## [dev] (MM/DD/YYYY)
8
+
9
+
### Added
10
+
11
+
### Changed
12
+
* Dropped support for `scipy.fftpack` interface [gh-185](https://github.com/IntelPython/mkl_fft/pull/185)
13
+
* Dropped support for `overwrite_x` parameter in `mkl_fft`[gh-185](https://github.com/IntelPython/mkl_fft/pull/185)
14
+
15
+
### Fixed
16
+
* Fixed a bug for N-D FFTs when both `s` and `out` are given [gh-185](https://github.com/IntelPython/mkl_fft/pull/185)
17
+
18
+
## [2.0.0] (06/DD/2025)
8
19
9
20
### Added
10
21
* Added Hermitian FFT functions to SciPy interface `mkl_fft.interfaces.scipy_fft`: `hfft`, `ihfft`, `hfftn`, `ihfftn`, `hfft2`, and `ihfft2`[gh-161](https://github.com/IntelPython/mkl_fft/pull/161)
@@ -15,12 +26,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
26
* NumPy interface `mkl_fft.interfaces.numpy_fft` is aligned with numpy-2.x.x [gh-139](https://github.com/IntelPython/mkl_fft/pull/139), [gh-157](https://github.com/IntelPython/mkl_fft/pull/157)
16
27
* To set `mkl_fft` as the backend for SciPy is only possible through `mkl_fft.interfaces.scipy_fft`[gh-179](https://github.com/IntelPython/mkl_fft/pull/179)
17
28
* SciPy interface `mkl_fft.interfaces.scipy_fft` uses the same function from SciPy for handling `s` and `axes` for N-D FFTs [gh-181](https://github.com/IntelPython/mkl_fft/pull/181)
29
+
* Dropped support for `scipy.fftpack` interface [gh-185](https://github.com/IntelPython/mkl_fft/pull/185)
30
+
* Dropped support for `overwrite_x` parameter in `mkl_fft`[gh-185](https://github.com/IntelPython/mkl_fft/pull/185)
18
31
19
32
### Fixed
20
-
* Fixed an issue for calling `mkl_fft.interfaces.numpy.fftn`with an empty axes [gh-139](https://github.com/IntelPython/mkl_fft/pull/139)
21
-
* Fixed an issue for calling `mkl_fft.interfaces.numpy.fftn` with a zero-size array [gh-139](https://github.com/IntelPython/mkl_fft/pull/139)
33
+
* Fixed a bug in `mkl_fft.interfaces.numpy.fftn`when an empty tuple is passed for `axes`[gh-139](https://github.com/IntelPython/mkl_fft/pull/139)
34
+
* Fixed a bug for a case when a zero-size array is passed to `mkl_fft.interfaces.numpy.fftn`[gh-139](https://github.com/IntelPython/mkl_fft/pull/139)
22
35
* Fixed inconsistency of input and output arrays dtype for `irfft` function [gh-180](https://github.com/IntelPython/mkl_fft/pull/180)
23
36
* Fixed issues with `set_workers` function in SciPy interface `mkl_fft.interfaces.scipy_fft`[gh-183](https://github.com/IntelPython/mkl_fft/pull/183)
37
+
* Fixed a bug for N-D FFTs when both `s` and `out` are given [gh-185](https://github.com/IntelPython/mkl_fft/pull/185)
0 commit comments