Updated to CLBlast version 1.2.0

pull/222/head 1.2.0
Cedric Nugteren 2017-11-08 21:30:06 +01:00
parent d24138808b
commit 5d5e3f93bc
5 changed files with 8 additions and 7 deletions

View File

@ -58,8 +58,8 @@ build_script:
after_build:
- ps: pushd $env:CLBLAST_BUILD
- 7z a CLBlast-1.1.0-Windows-x64.zip .\install_dir\*
- ps: mv CLBlast-1.1.0-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER
- 7z a CLBlast-1.2.0-Windows-x64.zip .\install_dir\*
- ps: mv CLBlast-1.2.0-Windows-x64.zip $env:APPVEYOR_BUILD_FOLDER
artifacts:
- path: '*.zip'

View File

@ -21,7 +21,7 @@ matrix:
env:
global:
- CLBLAST_VERSION=1.1.0
- CLBLAST_VERSION=1.2.0
- CLBLAST_ROOT=${TRAVIS_BUILD_DIR}/bin/clblast
- CLBLAST_INSTALL=${TRAVIS_BUILD_DIR}/bin/CLBlast-${CLBLAST_VERSION}
- CLBLAST_TAR=CLBlast-${CLBLAST_VERSION}-${TRAVIS_OS_NAME}-x64.tar.gz

View File

@ -1,5 +1,5 @@
Development (next version)
Version 1.2.0
- Fixed a bug in the TRSM/TRSV routines due to missing synchronisations after GEMM/GEMV calls
- Fixed a bug in TRSM when using the a-offset argument
- Added a CUDA API to CLBlast:
@ -27,7 +27,7 @@ Version 1.1.0
* SIM2COL/DIM2COL/CIM2COL/ZIM2COL/HIM2COL (im2col transform as used to express convolution as GEMM)
Version 1.0.1
- Fixed a bug in the direct version of the GEMM kernel)
- Fixed a bug in the direct version of the GEMM kernel
Version 1.0.0
- Fixed a bug in the TRSM routine for alpha != 1

View File

@ -21,7 +21,7 @@ endif()
# CMake project details
project("clblast" C CXX)
set(clblast_VERSION_MAJOR 1)
set(clblast_VERSION_MINOR 1)
set(clblast_VERSION_MINOR 2)
set(clblast_VERSION_PATCH 0)
# Options and their default values

View File

@ -24,7 +24,7 @@ Use CLBlast instead of clBLAS:
* When you are still running on OpenCL 1.1 hardware.
* When you prefer a C++ API over a C API (C API also available in CLBlast).
* When you value an organized and modern C++ codebase.
* When you target Intel CPUs and GPUs or embedded devices
* When you target Intel CPUs and GPUs or embedded devices.
* When you can benefit from the increased performance of half-precision fp16 data-types.
Use CLBlast instead of cuBLAS:
@ -58,6 +58,7 @@ The pre-requisites for compilation of CLBlast are:
- Intel OpenCL
- Beignet
- Mesa Clover
- ARM Mali OpenCL
An example of an out-of-source build using a command-line compiler and make (starting from the root of the CLBlast folder):