From 4d8cc2a07778ae8bac04d0af3c1079921b2115b2 Mon Sep 17 00:00:00 2001 From: Oleksandr Pavlyk Date: Mon, 14 Sep 2020 14:44:04 -0500 Subject: [PATCH] publishing v1.2.0 --- CHANGES.rst | 9 +++++++++ conda-recipe/meta.yaml | 2 +- mkl_fft/_version.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 41e71c1..8f5cee2 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,15 @@ mkl_fft changelog ================= +1.2.0 +===== + +Due to removal of deprecated real-to-real FFT with `DFTI_CONJUGATE_EVEN_STORAGE=DFTI_COMPLEX_REAL` and `DFTI_PACKED_FORMAT=DFTI_PACK` +from Intel(R) Math Kernel Library, reimplemented `mkl_fft.rfft` and `mkl_fft.irfft` to use real-to-complex functionality with subsequent +copying to rearange the transform as expected of `mkl_fft.rfft`, with the associated performance penalty. The use of the real-to-complex +transform improves multi-core utilization which may offset the performance loss incurred due to copying. + + 1.1.0 ===== diff --git a/conda-recipe/meta.yaml b/conda-recipe/meta.yaml index 0abbe62..2cc761c 100644 --- a/conda-recipe/meta.yaml +++ b/conda-recipe/meta.yaml @@ -1,4 +1,4 @@ -{% set version = "1.1.0" %} +{% set version = "1.2.0" %} {% set buildnumber = 0 %} package: diff --git a/mkl_fft/_version.py b/mkl_fft/_version.py index 1a72d32..58d478a 100644 --- a/mkl_fft/_version.py +++ b/mkl_fft/_version.py @@ -1 +1 @@ -__version__ = '1.1.0' +__version__ = '1.2.0'