Skip to content

Commit

Permalink
Bump to version 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
CNugteren committed Jun 12, 2024
1 parent 962f929 commit d740908
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 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.6.2-Windows-x64.zip .\install_dir\*
- ps: mv CLBlast-1.6.2-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER
- 7z a CLBlast-1.6.3-Windows-x64.zip .\install_dir\*
- ps: mv CLBlast-1.6.3-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER

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

Version 1.6.3
- Fixed a bug in the GEMMK=1 kernel (with 2D register tiling) when MWG!=NWG
- CMake fixes for older versions and for the CUDA backend
- Added tuned parameters for many devices (see doc/tuning.md)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ endif()
project("clblast" C CXX)
set(clblast_VERSION_MAJOR 1)
set(clblast_VERSION_MINOR 6)
set(clblast_VERSION_PATCH 2)
set(clblast_VERSION_PATCH 3)
set(clblast_VERSION "${clblast_VERSION_MAJOR}.${clblast_VERSION_MINOR}.${clblast_VERSION_PATCH}")
set(clblast_SOVERSION ${clblast_VERSION_MAJOR})

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Known issues

Known issues:

* Correctness issues on Intel Arc A770 with version 1.6.2. Either downgrade to an older version or upgrade to a newer version.
* Correctness issues on Intel Arc A770 and several other devices with version 1.6.2 or lower (depends on the device). Upgrade to version 1.6.3 or newer.

* Routines returning an integer are currently not properly tested for half-precision FP16: IHAMAX/IHAMIN/IHMAX/IHMIN

Expand Down
4 changes: 2 additions & 2 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.6.2)
// Version numbering (v1.6.3)
#define CLBLAST_VERSION_MAJOR 1
#define CLBLAST_VERSION_MINOR 6
#define CLBLAST_VERSION_PATCH 2
#define CLBLAST_VERSION_PATCH 3

namespace clblast {
// =================================================================================================
Expand Down
4 changes: 2 additions & 2 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.6.2)
// Version numbering (v1.6.3)
#define CLBLAST_VERSION_MAJOR 1
#define CLBLAST_VERSION_MINOR 6
#define CLBLAST_VERSION_PATCH 2
#define CLBLAST_VERSION_PATCH 3

// The C interface
#ifdef __cplusplus
Expand Down

0 comments on commit d740908

Please sign in to comment.