Skip to content

Commit 9af6d00

Browse files
committed
release notes and version numbering for 2.10.1 patch
1 parent 5c685c1 commit 9af6d00

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

ReleaseNotes.txt

+16
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,22 @@ implementation of discrete Fast Fourier Transforms. It:
1919
* Supports in-place or out-of-place transforms
2020

2121

22+
clFFT - Release Notes - version 2.10.1
23+
--------------------------------------
24+
25+
This is a patch update release to v2.10.0.
26+
It has the following:
27+
28+
* Performance fixes for slowdown observed vs v2.8. Specifically,
29+
2D transforms for certain sizes showed significant slowdown.
30+
This issue has been fixed in this release. The fix also makes the
31+
performance in general better than v2.8.
32+
* Code reorganization in transposes and performance improvements.
33+
There is a modest performance improvement with inplace transforms
34+
for large power-of-2 sizes.
35+
* Several minor enhancements and bug fixes
36+
37+
2238
clFFT - Release Notes - version 2.10.0
2339
--------------------------------------
2440

src/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ if( NOT DEFINED CLFFT_VERSION_MINOR )
4444
endif( )
4545

4646
if( NOT DEFINED CLFFT_VERSION_PATCH )
47-
set( CLFFT_VERSION_PATCH 0 )
47+
set( CLFFT_VERSION_PATCH 1 )
4848
endif( )
4949

5050
set( CLFFT_VERSION "${CLFFT_VERSION_MAJOR}.${CLFFT_VERSION_MINOR}.${CLFFT_VERSION_PATCH}")

0 commit comments

Comments
 (0)