clMathLibraries / clBLAS

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

ixamax and syr2/her2 bugs #290

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.