Skip to content

Commit

Permalink
Releasing version numbering in Cmake for minor clSPARSE release: v0.8…
Browse files Browse the repository at this point in the history
….0.1

Minor Fix in test-blas3
Matrix market reader functions are modified to read explicit zeros from matrix market files by default. Also an option is provided to skip reading these zeros.
Correspondingly all related functions which eventually call matrix market reader are changed.
  • Loading branch information
kvaragan committed Nov 2, 2015
1 parent 8140609 commit c766b14
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ endif()
if( POLICY CMP0048 )
cmake_policy( SET CMP0048 NEW )

project( SuperBuild.clSPARSE VERSION 0.9.0.0 )
project( SuperBuild.clSPARSE VERSION 0.8.1.0 )
else( )
project( SuperBuild.clSPARSE )

Expand All @@ -48,11 +48,11 @@ else( )
endif( )

if( NOT DEFINED SuperBuild.clSPARSE_VERSION_MINOR )
set( SuperBuild.clSPARSE_VERSION_MINOR 9 )
set( SuperBuild.clSPARSE_VERSION_MINOR 8 )
endif( )

if( NOT DEFINED SuperBuild.clSPARSE_VERSION_PATCH )
set( SuperBuild.clSPARSE_VERSION_PATCH 0 )
set( SuperBuild.clSPARSE_VERSION_PATCH 1 )
endif( )

if( NOT DEFINED SuperBuild.clSPARSE_VERSION_TWEAK )
Expand Down
6 changes: 3 additions & 3 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ endif()
# clSPARSE becomes the name of the project with a particular version
if( POLICY CMP0048 )
cmake_policy( SET CMP0048 NEW )
project( clSPARSE VERSION 0.9.0.0 LANGUAGES C CXX )
project( clSPARSE VERSION 0.8.1.0 LANGUAGES C CXX )
else( )
project( clSPARSE C CXX )
# Define a version for the code
Expand All @@ -46,11 +46,11 @@ else( )
endif( )

if( NOT DEFINED clSPARSE_VERSION_MINOR )
set( clSPARSE_VERSION_MINOR 9 )
set( clSPARSE_VERSION_MINOR 8 )
endif( )

if( NOT DEFINED clSPARSE_VERSION_PATCH )
set( clSPARSE_VERSION_PATCH 0 )
set( clSPARSE_VERSION_PATCH 1 )
endif( )

if( NOT DEFINED clSPARSE_VERSION_TWEAK )
Expand Down

0 comments on commit c766b14

Please sign in to comment.