File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,22 @@ implementation of discrete Fast Fourier Transforms. It:
19
19
* Supports in-place or out-of-place transforms
20
20
21
21
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
+
22
38
clFFT - Release Notes - version 2.10.0
23
39
--------------------------------------
24
40
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ if( NOT DEFINED CLFFT_VERSION_MINOR )
44
44
endif ( )
45
45
46
46
if ( NOT DEFINED CLFFT_VERSION_PATCH )
47
- set ( CLFFT_VERSION_PATCH 0 )
47
+ set ( CLFFT_VERSION_PATCH 1 )
48
48
endif ( )
49
49
50
50
set ( CLFFT_VERSION "${CLFFT_VERSION_MAJOR} .${CLFFT_VERSION_MINOR} .${CLFFT_VERSION_PATCH} " )
You can’t perform that action at this time.
0 commit comments