reworkhow / JWAS.jl

Julia for Whole-genome Analysis Software
http://QTL.rocks
GNU General Public License v2.0
96 stars 44 forks source link

call into generix axpy! intead of the BLAS specific one #133

Open KristofferC opened 1 year ago

KristofferC commented 1 year ago

BLAS.axpy! and LinearAlgebra.axpy! (the generic version) were separated in https://github.com/JuliaLang/julia/pull/44758 since calls to BLAS.axpy! did not always call into BLAS. This made this package break since it is calling BLAS.axpy! with element types that BLAS do not support. Just calling axpy! fixes this.