diff --git a/README.md b/README.md index a5211867..4921a9bd 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,8 @@ Pre-built binaries are available [here][binary_release]. ## What's New - Support for power-of-7 size transforms -- Pre-callback feature that enables custom pre-processing - of input data directly by the library with user callback function +- Pre-callback & post-callback feature that enables custom pre-processing + of input/output data directly by the library with user callback function - Support for 1D large size transforms with no extra memory allocation requirement for certain sizes - Significant uplift of 1D complex transform performance @@ -25,7 +25,6 @@ Pre-built binaries are available [here][binary_release]. - 1D large size limit relaxation for complex transforms - 2D/3D size limit relaxation on real and complex transforms - Binary caching feature -- Several minor fixes and improvements ## Note diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index e1cc0191..ddadccef 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -19,6 +19,15 @@ implementation of discrete Fast Fourier Transforms. It: * Supports in-place or out-of-place transforms +clFFT - Release Notes - version 2.10.2 +-------------------------------------- + +This is a patch update release to v2.10.1. +It has the following: + +* Fixes for accuracy/stability issues noted in large size real FFTs + + clFFT - Release Notes - version 2.10.1 -------------------------------------- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6bce0a96..12e703bd 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -44,7 +44,7 @@ if( NOT DEFINED CLFFT_VERSION_MINOR ) endif( ) if( NOT DEFINED CLFFT_VERSION_PATCH ) - set( CLFFT_VERSION_PATCH 1 ) + set( CLFFT_VERSION_PATCH 2 ) endif( ) set( CLFFT_VERSION "${CLFFT_VERSION_MAJOR}.${CLFFT_VERSION_MINOR}.${CLFFT_VERSION_PATCH}")