Skip to content

Commit b0b3028

Browse files
authored
Update to version 1.6.0 (#475)
1 parent 0366842 commit b0b3028

File tree

5 files changed

+15
-10
lines changed

5 files changed

+15
-10
lines changed

.appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ build_script:
5555

5656
after_build:
5757
- ps: pushd $env:CLBLAST_BUILD
58-
- 7z a CLBlast-1.5.3-Windows-x64.zip .\install_dir\*
59-
- ps: mv CLBlast-1.5.3-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER
58+
- 7z a CLBlast-1.6.0-Windows-x64.zip .\install_dir\*
59+
- ps: mv CLBlast-1.6.0-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER
6060

6161
artifacts:
6262
- path: '*.zip'

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
Development version (next version)
2+
-
3+
4+
Version 1.6.0
25
- Modifications to improve performance on Qualcomm Adreno GPUs:
36
* Unique database entries for specific Adreno devices
47
* Toggle OpenCL kernel compilation options for Adreno
@@ -11,6 +14,8 @@ Development version (next version)
1114
- Fixes an issue with crashes on Android related to calling clReleaseProgram
1215
- Fixes two small issues in the plotting script
1316
- Fixed a documentation bug in the 'ld' requirements
17+
- Enabled Github Actions CI builds for testing and releasing
18+
- Various minor fixes and enhancements
1419
- Added tuned parameters for various devices (see doc/tuning.md)
1520

1621
Version 1.5.3

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ endif()
2121
# CMake project details
2222
project("clblast" C CXX)
2323
set(clblast_VERSION_MAJOR 1)
24-
set(clblast_VERSION_MINOR 5)
25-
set(clblast_VERSION_PATCH 3)
24+
set(clblast_VERSION_MINOR 6)
25+
set(clblast_VERSION_PATCH 0)
2626
set(clblast_VERSION "${clblast_VERSION_MAJOR}.${clblast_VERSION_MINOR}.${clblast_VERSION_PATCH}")
2727
set(clblast_SOVERSION ${clblast_VERSION_MAJOR})
2828

include/clblast.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@
3939
#define PUBLIC_API
4040
#endif
4141

42-
// Version numbering (v1.5.3)
42+
// Version numbering (v1.6.0)
4343
#define CLBLAST_VERSION_MAJOR 1
44-
#define CLBLAST_VERSION_MINOR 5
45-
#define CLBLAST_VERSION_PATCH 3
44+
#define CLBLAST_VERSION_MINOR 6
45+
#define CLBLAST_VERSION_PATCH 0
4646

4747
namespace clblast {
4848
// =================================================================================================

include/clblast_c.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@
3434
#define PUBLIC_API
3535
#endif
3636

37-
// Version numbering (v1.5.3)
37+
// Version numbering (v1.6.0)
3838
#define CLBLAST_VERSION_MAJOR 1
39-
#define CLBLAST_VERSION_MINOR 5
40-
#define CLBLAST_VERSION_PATCH 3
39+
#define CLBLAST_VERSION_MINOR 6
40+
#define CLBLAST_VERSION_PATCH 0
4141

4242
// The C interface
4343
#ifdef __cplusplus

0 commit comments

Comments
 (0)