Skip to content

Commit db179a1

Browse files
committed
Updated to CLBlast version 1.4.1
1 parent f72620f commit db179a1

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ build_script:
5757

5858
after_build:
5959
- ps: pushd $env:CLBLAST_BUILD
60-
- 7z a CLBlast-1.4.0-Windows-x64.zip .\install_dir\*
61-
- ps: mv CLBlast-1.4.0-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER
60+
- 7z a CLBlast-1.4.1-Windows-x64.zip .\install_dir\*
61+
- ps: mv CLBlast-1.4.1-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER
6262

6363
artifacts:
6464
- path: '*.zip'

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ matrix:
2121

2222
env:
2323
global:
24-
- CLBLAST_VERSION=1.4.0
24+
- CLBLAST_VERSION=1.4.1
2525
- CLBLAST_ROOT=${TRAVIS_BUILD_DIR}/bin/clblast
2626
- CLBLAST_INSTALL=${TRAVIS_BUILD_DIR}/bin/CLBlast-${CLBLAST_VERSION}
2727
- CLBLAST_TAR=CLBlast-${CLBLAST_VERSION}-${TRAVIS_OS_NAME}-x64.tar.gz

CHANGELOG

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
Development (next version)
2+
Version 1.4.1
33
- Fixed an access violation under Windows upon releasing the OpenCL program when the driver is already unloaded
44
- Fixed an issue with double cl_program release in the CLBlast caching system
55
- Added tuned parameters for various devices (see doc/tuning.md)

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ endif()
2222
project("clblast" C CXX)
2323
set(clblast_VERSION_MAJOR 1)
2424
set(clblast_VERSION_MINOR 4)
25-
set(clblast_VERSION_PATCH 0)
25+
set(clblast_VERSION_PATCH 1)
2626
set(clblast_VERSION "${clblast_VERSION_MAJOR}.${clblast_VERSION_MINOR}.${clblast_VERSION_PATCH}")
2727
set(clblast_SOVERSION ${clblast_VERSION_MAJOR})
2828

doc/installation.md

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ The pre-requisites for compilation of CLBlast are kept as minimal as possible. A
2525
- Mesa Clover
2626
- ARM Mali OpenCL
2727
- Vivante OpenCL
28+
- POCL
2829

2930

3031
Using pre-built packages

0 commit comments

Comments
 (0)