Skip to content

Commit abbfece

Browse files
author
Kent Knox
committed
Add build badge for master branch in readme.md file
Fix link to wiki article on compensated summation Bump version number in cmake and docs to v0.8
1 parent 9dd1df4 commit abbfece

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ endif()
3838
if( POLICY CMP0048 )
3939
cmake_policy( SET CMP0048 NEW )
4040

41-
project( SuperBuild.clSPARSE VERSION 0.7.2.0 )
41+
project( SuperBuild.clSPARSE VERSION 0.8.0.0 )
4242
else( )
4343
project( SuperBuild.clSPARSE )
4444

@@ -48,11 +48,11 @@ else( )
4848
endif( )
4949

5050
if( NOT DEFINED SuperBuild.clSPARSE_VERSION_MINOR )
51-
set( SuperBuild.clSPARSE_VERSION_MINOR 7 )
51+
set( SuperBuild.clSPARSE_VERSION_MINOR 8 )
5252
endif( )
5353

5454
if( NOT DEFINED SuperBuild.clSPARSE_VERSION_PATCH )
55-
set( SuperBuild.clSPARSE_VERSION_PATCH 2 )
55+
set( SuperBuild.clSPARSE_VERSION_PATCH 0 )
5656
endif( )
5757

5858
if( NOT DEFINED SuperBuild.clSPARSE_VERSION_TWEAK )

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Pre-built binaries are available on our [releases page](https://github.com/clMat
44
| Build branch | master | develop |
55
|-----|-----|-----|
66
| GCC/Clang x64 | [![Build Status](https://travis-ci.org/clMathLibraries/clSPARSE.svg?branch=master)](https://travis-ci.org/clMathLibraries/clSPARSE/branches) | [![Build Status](https://travis-ci.org/clMathLibraries/clSPARSE.svg?branch=develop)](https://travis-ci.org/clMathLibraries/clSPARSE/branches) |
7-
| Visual Studio x64 | |[![Build status](https://ci.appveyor.com/api/projects/status/93518qe0efy6n7fy/branch/develop?svg=true)](https://ci.appveyor.com/project/kknox/clsparse-otonj/branch/develop) |
7+
| Visual Studio x64 |[![Build status](https://ci.appveyor.com/api/projects/status/93518qe0efy6n7fy/branch/master?svg=true)](https://ci.appveyor.com/project/kknox/clsparse-otonj/branch/master) |[![Build status](https://ci.appveyor.com/api/projects/status/93518qe0efy6n7fy/branch/develop?svg=true)](https://ci.appveyor.com/project/kknox/clsparse-otonj/branch/develop) |
88

99
# clSPARSE
1010
an OpenCL™ library implementing Sparse linear algebra routines. This project is a result of
@@ -15,7 +15,7 @@ a collaboration between [AMD Inc.](http://www.amd.com/) and
1515
- New single precision SpM-SpM (SpGEMM) function
1616
- Optimizations to the sparse matrix conversion routines
1717
- [API documentation](http://clmathlibraries.github.io/clSPARSE/) available
18-
- [SpM-dV routines now provide higher precision accurarcy] (https://github.com/clMathLibraries/clSPARSE/wiki/SpM-dV-Improved-Precision-mode-Accuracy)
18+
- SpM-dV routines now provide [higher precision accuracy] (https://github.com/clMathLibraries/clSPARSE/wiki/Precision)
1919
- Various bug fixes integrated
2020

2121

docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = clSPARSE
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = v0.6.2.0
41+
PROJECT_NUMBER = v0.8.0.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

src/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ endif()
3737
# clSPARSE becomes the name of the project with a particular version
3838
if( POLICY CMP0048 )
3939
cmake_policy( SET CMP0048 NEW )
40-
project( clSPARSE VERSION 0.7.2.0 LANGUAGES C CXX )
40+
project( clSPARSE VERSION 0.8.0.0 LANGUAGES C CXX )
4141
else( )
4242
project( clSPARSE C CXX )
4343
# Define a version for the code
@@ -46,11 +46,11 @@ else( )
4646
endif( )
4747

4848
if( NOT DEFINED clSPARSE_VERSION_MINOR )
49-
set( clSPARSE_VERSION_MINOR 7 )
49+
set( clSPARSE_VERSION_MINOR 8 )
5050
endif( )
5151

5252
if( NOT DEFINED clSPARSE_VERSION_PATCH )
53-
set( clSPARSE_VERSION_PATCH 2 )
53+
set( clSPARSE_VERSION_PATCH 0 )
5454
endif( )
5555

5656
if( NOT DEFINED clSPARSE_VERSION_TWEAK )

0 commit comments

Comments
 (0)