clMathLibraries / clBLAS

a software library containing BLAS functions written in OpenCL
Apache License 2.0
839 stars 240 forks source link

fix ixamax and syr2/her2 #289

Closed mgates3 closed 7 years ago

mgates3 commented 7 years ago

Two bug fixes: 1) ixamax crashes if x offset is not a multiple of vector size. Caused by checking offa, when it should check offb, to determine whether to use vload. 2) syr2/her2 get wrong result when incx != incy. Caused by Y using incx instead of incy.

tingxingdong commented 7 years ago

Hi, Mark, Thanks for your contribution. You want to make a pull request to the clBLAS develop branch instead of master branch. So it will pass the travis. Master branch is released based on develop branch for a while.

pavanky commented 7 years ago

@tingxingdong @mgates3 FYI github now allows you to change the target branch in the PR without closing it.