File tree 5 files changed +9
-9
lines changed
5 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ build_script:
57
57
58
58
after_build :
59
59
- 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
62
62
63
63
artifacts :
64
64
- path : ' *.zip'
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ matrix:
21
21
22
22
env :
23
23
global :
24
- - CLBLAST_VERSION=1.3 .0
24
+ - CLBLAST_VERSION=1.4 .0
25
25
- CLBLAST_ROOT=${TRAVIS_BUILD_DIR}/bin/clblast
26
26
- CLBLAST_INSTALL=${TRAVIS_BUILD_DIR}/bin/CLBlast-${CLBLAST_VERSION}
27
27
- CLBLAST_TAR=CLBlast-${CLBLAST_VERSION}-${TRAVIS_OS_NAME}-x64.tar.gz
Original file line number Diff line number Diff line change 1
1
2
- Development (next version)
2
+ Version 1.4.0
3
3
- Added Python interface to CLBlast 'PyCLBlast'
4
4
- Added CLBlast to Ubuntu PPA and macOS Homebrew package managers
5
5
- Added an API to run the tuners programmatically without any I/O
@@ -8,7 +8,7 @@ Development (next version)
8
8
- Re-added a local memory size constraint to the tuners
9
9
- The routine tuners now automatically pick up tuning results from disk from the kernel tuners
10
10
- 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)
12
12
- Added an option to test against and compare performance with Intel's MKL
13
13
- Fixed an access violation when compiled with Visual Studio upon releasing the OpenCL program
14
14
- Fixed incorrect releasing of the OpenCL program resulting in segfaults / access violations
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ endif()
21
21
# CMake project details
22
22
project ("clblast" C CXX)
23
23
set (clblast_VERSION_MAJOR 1)
24
- set (clblast_VERSION_MINOR 3 )
24
+ set (clblast_VERSION_MINOR 4 )
25
25
set (clblast_VERSION_PATCH 0)
26
26
set (clblast_VERSION "${clblast_VERSION_MAJOR} .${clblast_VERSION_MINOR} .${clblast_VERSION_PATCH} " )
27
27
set (clblast_SOVERSION ${clblast_VERSION_MAJOR} )
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ This file gives an overview of the main features planned for addition to CLBlast
18
18
| [ #223 ] ( https://github.com/CNugteren/CLBlast/issues/223 ) | Feb '18 | CNugteren | ✔ | Python OpenCL interface |
19
19
| [ #237 ] ( https://github.com/CNugteren/CLBlast/issues/237 ) | Mar '18 | CNugteren | ✔ | Making tuning possible from the CLBlast API |
20
20
| [ #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 |
24
24
| [ #136 ] ( https://github.com/CNugteren/CLBlast/issues/136 ) | ?? | CNugteren | | Implement xAXPBY and xSET |
25
25
| [ #169 ] ( https://github.com/CNugteren/CLBlast/issues/169 ) | ?? | dividiti | | Problem-specific tuning parameter selection |
You can’t perform that action at this time.
0 commit comments