Skip to content

Commit 3ab7eac

Browse files
author
bragadeesh
committed
adding notes and bumping version number for 2.10.2
1 parent ccfaf84 commit 3ab7eac

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

README.md

+2-3
Original file line numberDiff line numberDiff 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

ReleaseNotes.txt

+9
Original file line numberDiff line numberDiff 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+
2231
clFFT - Release Notes - version 2.10.1
2332
--------------------------------------
2433

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 1 )
47+
set( CLFFT_VERSION_PATCH 2 )
4848
endif( )
4949

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

0 commit comments

Comments
 (0)