[clfft] 102/107: merging from develop branch and bumping release version

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Thu Jul 30 18:06:42 UTC 2015


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a commit to branch master
in repository clfft.

commit c1306411c392a39a14d390cb521b81d9d4579b71
Merge: 801830a 40517b2
Author: bnataraj <bragadeesh.natarajan at amd.com>
Date:   Sat Jul 11 04:59:09 2015 -0500

    merging from develop branch and bumping release version

 .gitignore                                         |    3 +
 .travis.yml                                        |   14 +-
 README.md                                          |   10 +
 doc/clFFT.doxy                                     | 2603 +++++++-----
 src/CMakeLists.txt                                 |   69 +-
 src/clFFTConfig.cmake.in                           |    3 +
 src/clFFTConfigVersion.cmake.in                    |   46 +
 src/client/CMakeLists.txt                          |   22 +-
 src/client/client.cpp                              |   67 +-
 src/client/client.h                                |   41 +
 src/client/openCL.misc.cpp                         |  863 ++--
 src/client/openCL.misc.h                           |   43 +-
 src/examples/CMakeLists.txt                        |   52 +
 src/examples/fft1d.c                               |  136 +
 src/examples/fft2d.c                               |  145 +
 src/examples/fft3d.c                               |  154 +
 src/gtest.cmake                                    |   79 +
 src/include/clFFT.h                                |   12 +-
 src/include/clFFT.version.h.in                     |    2 +
 src/include/sharedLibrary.h                        |   16 +-
 src/library/CMakeLists.txt                         |   19 +-
 src/library/accessors.cpp                          |   70 +-
 src/library/action.cpp                             |  777 ++++
 src/library/action.h                               |  257 ++
 src/library/fft_binary_lookup.cpp                  |  688 ++++
 src/library/fft_binary_lookup.h                    |  276 ++
 src/library/generator.copy.cpp                     |  457 ++-
 src/library/generator.h                            |    9 +-
 src/library/generator.stockham.cpp                 | 1128 +++--
 src/library/generator.stockham.h                   |  278 +-
 src/library/generator.transpose.gcn.cpp            | 1020 +++++
 ...rator.transpose.h => generator.transpose.gcn.h} |    0
 ....transpose.cpp => generator.transpose.vliw.cpp} |  167 +-
 ...ator.transpose.h => generator.transpose.vliw.h} |    0
 src/library/lifetime.cpp                           |    2 +
 src/library/mainpage.h                             |   10 +-
 src/library/md5sum.c                               |  312 ++
 src/library/md5sum.h                               |   50 +
 src/library/plan.cpp                               | 4319 +++++++++++---------
 src/library/plan.h                                 |  342 +-
 src/library/private.h                              |    5 +-
 src/library/repo.cpp                               |   55 +-
 src/library/repo.h                                 |   77 +-
 src/library/transform.cpp                          | 1378 +++----
 src/scripts/perf/CMakeLists.txt                    |    7 +-
 src/statTimer/CMakeLists.txt                       |    7 +-
 src/statTimer/statisticalTimer.extern.h            |   12 +-
 src/tests/CMakeLists.txt                           |   17 +-
 src/tests/accuracy_test_pow2.cpp                   |  115 +
 src/tests/buffer.h                                 |    2 +-
 src/tests/cl_transform.h                           |    7 +-
 src/tests/gtest_main.cpp                           |   34 +-
 src/tests/test_constants.cpp                       |    5 +-
 src/tests/test_constants.h                         |    5 +-
 src/tests/unit_test.cpp                            |    5 +-
 55 files changed, 11133 insertions(+), 5159 deletions(-)

diff --cc README.md
index 24bd518,d981d2f..cd982dc
--- a/README.md
+++ b/README.md
@@@ -9,6 -9,18 +9,16 @@@ programming
  
  Pre-built binaries are available [here][binary_release].
  
+ ## What's New
+ 
 -The [commit](https://github.com/clMathLibraries/clFFT/commit/2a533358c6a559d1a996e1c3077dd05bc8845191) in the
 -develop branch has added important updates to the library. They 
 -include:
+ -   Significant uplift of 1D complex transform performance
++-   Significant uplift of 1D real transform performance for power-of-2 sizes
+ -   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
+ 
+ 
  ## Introduction to clFFT
  
  The FFT is an implementation of the Discrete Fourier Transform (DFT)
diff --cc src/CMakeLists.txt
index ec5fc4b,ad15e4a..823f1e0
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@@ -40,7 -40,7 +40,7 @@@ if( NOT DEFINED CLFFT_VERSION_MAJOR 
  endif( )
  
  if( NOT DEFINED CLFFT_VERSION_MINOR )
-     set( CLFFT_VERSION_MINOR 4 )
 -    set( CLFFT_VERSION_MINOR 5 )
++    set( CLFFT_VERSION_MINOR 6 )
  endif( )
  
  if( NOT DEFINED CLFFT_VERSION_PATCH )

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/clfft.git



More information about the debian-science-commits mailing list