Skip to content

Commit 4471b67

Browse files
committed
Updated to CLBlast version 1.4.0
1 parent fee8df1 commit 4471b67

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
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.3.0-Windows-x64.zip .\install_dir\*
61-
- ps: mv CLBlast-1.3.0-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER
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
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.3.0
24+
- CLBLAST_VERSION=1.4.0
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

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

2-
Development (next version)
2+
Version 1.4.0
33
- Added Python interface to CLBlast 'PyCLBlast'
44
- Added CLBlast to Ubuntu PPA and macOS Homebrew package managers
55
- Added an API to run the tuners programmatically without any I/O
@@ -8,7 +8,7 @@ Development (next version)
88
- Re-added a local memory size constraint to the tuners
99
- The routine tuners now automatically pick up tuning results from disk from the kernel tuners
1010
- Updated and reorganised the CLBlast documentation
11-
- Added a 'canary' region to check for overflows in the tuner and tests (insipred by clARMOR)
11+
- Added a 'canary' region to check for overflows in the tuner and tests (inspired by clARMOR)
1212
- Added an option to test against and compare performance with Intel's MKL
1313
- Fixed an access violation when compiled with Visual Studio upon releasing the OpenCL program
1414
- Fixed incorrect releasing of the OpenCL program resulting in segfaults / access violations

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ endif()
2121
# CMake project details
2222
project("clblast" C CXX)
2323
set(clblast_VERSION_MAJOR 1)
24-
set(clblast_VERSION_MINOR 3)
24+
set(clblast_VERSION_MINOR 4)
2525
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})

ROADMAP.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ This file gives an overview of the main features planned for addition to CLBlast
1818
| [#223](https://github.com/CNugteren/CLBlast/issues/223) | Feb '18 | CNugteren || Python OpenCL interface |
1919
| [#237](https://github.com/CNugteren/CLBlast/issues/237) | Mar '18 | CNugteren || Making tuning possible from the CLBlast API |
2020
| [#228](https://github.com/CNugteren/CLBlast/issues/228) | Mar-Apr '18 | CNugteren || Improving performance for Qualcomm Adreno GPUs |
21-
| [#267](https://github.com/CNugteren/CLBlast/issues/267) | May '18 | CNugteren | | Merge im2col and GEMM into a direct kernel |
22-
| [#270](https://github.com/CNugteren/CLBlast/issues/270) | July '18 | CNugteren | | Implement col2im |
23-
| - | July '18 | CNugteren | | Add a SYCL interface to the library |
21+
| [#267](https://github.com/CNugteren/CLBlast/issues/267) | July '18 | CNugteren | | Merge im2col and GEMM into a direct kernel |
22+
| [#270](https://github.com/CNugteren/CLBlast/issues/270) | Aug '18 | CNugteren | | Implement col2im |
23+
| - | Aug '18 | CNugteren | | Add a SYCL interface to the library |
2424
| [#136](https://github.com/CNugteren/CLBlast/issues/136) | ?? | CNugteren | | Implement xAXPBY and xSET |
2525
| [#169](https://github.com/CNugteren/CLBlast/issues/169) | ?? | dividiti | | Problem-specific tuning parameter selection |

0 commit comments

Comments
 (0)