File tree Expand file tree Collapse file tree 5 files changed +15
-10
lines changed
Expand file tree Collapse file tree 5 files changed +15
-10
lines changed Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ build_script:
5555
5656after_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
6161artifacts :
6262 - path : ' *.zip'
Original file line number Diff line number Diff line change 11Development 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
1621Version 1.5.3
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ endif()
2121# CMake project details
2222project ("clblast" C CXX)
2323set (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 )
2626set (clblast_VERSION "${clblast_VERSION_MAJOR} .${clblast_VERSION_MINOR} .${clblast_VERSION_PATCH} " )
2727set (clblast_SOVERSION ${clblast_VERSION_MAJOR} )
2828
Original file line number Diff line number Diff line change 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
4747namespace clblast {
4848// =================================================================================================
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments