Skip to content

Commit be470fa

Browse files
REL: v1.1.0
1 parent 2d79309 commit be470fa

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

CHANGES.rst

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,33 @@
22
mkl_fft changelog
33
=================
44

5+
1.1.0
6+
=====
7+
8+
Added `scipy.fft` backend, see #42. Fixed #46.
9+
10+
```
11+
Python 3.7.5 (default, Nov 23 2019, 04:02:01)
12+
Type 'copyright', 'credits' or 'license' for more information
13+
IPython 7.11.1 -- An enhanced Interactive Python. Type '?' for help.
14+
15+
In [1]: import numpy as np, mkl_fft, mkl_fft._scipy_fft_backend as mkl_be, scipy, scipy.fft, mkl
16+
17+
In [2]: mkl.verbose(1)
18+
Out[2]: True
19+
20+
In [3]: x = np.random.randn(8*7).reshape((7, 8))
21+
...: with scipy.fft.set_backend(mkl_be, only=True):
22+
...: ff = scipy.fft.fft2(x, workers=4)
23+
...: ff2 = scipy.fft.fft2(x)
24+
MKL_VERBOSE Intel(R) MKL 2020.0 Product build 20191102 for Intel(R) 64 architecture Intel(R) Advanced Vector Extensions 2 (Intel(R) AVX2) enabled processors, Lnx 2.40GHz intel_thread
25+
MKL_VERBOSE FFT(drfo7:8:8x8:1:1,bScale:0.0178571,tLim:1,desc:0x5629ad31b800) 24.85ms CNR:OFF Dyn:1 FastMM:1 TID:0 NThr:16,FFT:4
26+
27+
In [4]: np.allclose(ff, ff2)
28+
Out[4]: True
29+
```
30+
31+
532
1.0.15
633
======
734

mkl_fft/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.15'
1+
__version__ = '1.1.0'

0 commit comments

Comments
 (0)