Skip to content

Commit

Permalink
Update to version 1.6.0 (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
CNugteren committed May 21, 2023
1 parent 0366842 commit b0b3028
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ build_script:

after_build:
- ps: pushd $env:CLBLAST_BUILD
- 7z a CLBlast-1.5.3-Windows-x64.zip .\install_dir\*
- ps: mv CLBlast-1.5.3-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER
- 7z a CLBlast-1.6.0-Windows-x64.zip .\install_dir\*
- ps: mv CLBlast-1.6.0-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER

artifacts:
- path: '*.zip'
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
Development version (next version)
-

Version 1.6.0
- Modifications to improve performance on Qualcomm Adreno GPUs:
* Unique database entries for specific Adreno devices
* Toggle OpenCL kernel compilation options for Adreno
Expand All @@ -11,6 +14,8 @@ Development version (next version)
- Fixes an issue with crashes on Android related to calling clReleaseProgram
- Fixes two small issues in the plotting script
- Fixed a documentation bug in the 'ld' requirements
- Enabled Github Actions CI builds for testing and releasing
- Various minor fixes and enhancements
- Added tuned parameters for various devices (see doc/tuning.md)

Version 1.5.3
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ endif()
# CMake project details
project("clblast" C CXX)
set(clblast_VERSION_MAJOR 1)
set(clblast_VERSION_MINOR 5)
set(clblast_VERSION_PATCH 3)
set(clblast_VERSION_MINOR 6)
set(clblast_VERSION_PATCH 0)
set(clblast_VERSION "${clblast_VERSION_MAJOR}.${clblast_VERSION_MINOR}.${clblast_VERSION_PATCH}")
set(clblast_SOVERSION ${clblast_VERSION_MAJOR})

Expand Down
6 changes: 3 additions & 3 deletions include/clblast.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@
#define PUBLIC_API
#endif

// Version numbering (v1.5.3)
// Version numbering (v1.6.0)
#define CLBLAST_VERSION_MAJOR 1
#define CLBLAST_VERSION_MINOR 5
#define CLBLAST_VERSION_PATCH 3
#define CLBLAST_VERSION_MINOR 6
#define CLBLAST_VERSION_PATCH 0

namespace clblast {
// =================================================================================================
Expand Down
6 changes: 3 additions & 3 deletions include/clblast_c.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
#define PUBLIC_API
#endif

// Version numbering (v1.5.3)
// Version numbering (v1.6.0)
#define CLBLAST_VERSION_MAJOR 1
#define CLBLAST_VERSION_MINOR 5
#define CLBLAST_VERSION_PATCH 3
#define CLBLAST_VERSION_MINOR 6
#define CLBLAST_VERSION_PATCH 0

// The C interface
#ifdef __cplusplus
Expand Down

0 comments on commit b0b3028

Please sign in to comment.