From b0af49d85c04addecd514cb79ca14f75bf54f2f4 Mon Sep 17 00:00:00 2001 From: bragadeesh Date: Fri, 3 Jun 2016 10:52:26 -0700 Subject: [PATCH] adding release notes for 2.12.1 --- ReleaseNotes.txt | 16 ++++++++++++++++ src/CMakeLists.txt | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt index 5341e4d9..9b32f7c4 100644 --- a/ReleaseNotes.txt +++ b/ReleaseNotes.txt @@ -19,6 +19,22 @@ implementation of discrete Fast Fourier Transforms. It: * Supports in-place or out-of-place transforms +clFFT - Release Notes - version 2.12.1 +-------------------------------------- + +New features of this release: + +* Fixes for bugs in decomposition logic of very large problem sizes + with environment flag CLFFT_REQUEST_LIB_NOMEMALLOC=1 +* Validation of sizes that are powers of 2,3,5 and combinations + thereof upto maximum size close to 25GB on S9170 + +Driver notes: + +* This library version has been tested with Catalyst + Pro driver version 15.302 on Firepro W9100 & S9170. + + clFFT - Release Notes - version 2.12.0 -------------------------------------- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0614c5b1..8b0c7871 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 0 ) + set( CLFFT_VERSION_PATCH 1 ) endif( ) set( CLFFT_VERSION "${CLFFT_VERSION_MAJOR}.${CLFFT_VERSION_MINOR}.${CLFFT_VERSION_PATCH}")