File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,16 +16,15 @@ Pre-built binaries are available [here][binary_release].
1616## What's New
1717
1818- 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
2121- Support for 1D large size transforms with no extra memory allocation
2222 requirement for certain sizes
2323- Significant uplift of 1D complex transform performance
2424- Significant uplift of 1D real transform performance for power-of-2 sizes
2525- 1D large size limit relaxation for complex transforms
2626- 2D/3D size limit relaxation on real and complex transforms
2727- Binary caching feature
28- - Several minor fixes and improvements
2928
3029## Note
3130
Original file line number Diff line number Diff line change @@ -19,6 +19,15 @@ 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.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+
2231clFFT - Release Notes - version 2.10.1
2332--------------------------------------
2433
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ if( NOT DEFINED CLFFT_VERSION_MINOR )
4444endif ( )
4545
4646if ( NOT DEFINED CLFFT_VERSION_PATCH )
47- set ( CLFFT_VERSION_PATCH 1 )
47+ set ( CLFFT_VERSION_PATCH 2 )
4848endif ( )
4949
5050set ( CLFFT_VERSION "${CLFFT_VERSION_MAJOR} .${CLFFT_VERSION_MINOR} .${CLFFT_VERSION_PATCH} " )
You can’t perform that action at this time.
0 commit comments