File tree 3 files changed +12
-4
lines changed
3 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -16,16 +16,15 @@ Pre-built binaries are available [here][binary_release].
16
16
## What's New
17
17
18
18
- Support for power-of-7 size transforms
19
- - Pre-callback feature that enables custom pre-processing
20
- of input data directly by the library with user callback function
19
+ - Pre-callback & post-callback feature that enables custom pre-processing
20
+ of input/output data directly by the library with user callback function
21
21
- Support for 1D large size transforms with no extra memory allocation
22
22
requirement for certain sizes
23
23
- Significant uplift of 1D complex transform performance
24
24
- Significant uplift of 1D real transform performance for power-of-2 sizes
25
25
- 1D large size limit relaxation for complex transforms
26
26
- 2D/3D size limit relaxation on real and complex transforms
27
27
- Binary caching feature
28
- - Several minor fixes and improvements
29
28
30
29
## Note
31
30
Original file line number Diff line number Diff line change @@ -19,6 +19,15 @@ 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.2
23
+ --------------------------------------
24
+
25
+ This is a patch update release to v2.10.1.
26
+ It has the following:
27
+
28
+ * Fixes for accuracy/stability issues noted in large size real FFTs
29
+
30
+
22
31
clFFT - Release Notes - version 2.10.1
23
32
--------------------------------------
24
33
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 1 )
47
+ set ( CLFFT_VERSION_PATCH 2 )
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