Skip to content
This repository was archived by the owner on Jun 24, 2022. It is now read-only.

Commit bf6b3d5

Browse files
committed
fix axpy signature
1 parent b32ebf4 commit bf6b3d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/blas.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import LinearAlgebra.BLAS
66
# generic implementations
77

88
@reroute LinearAlgebra.BLAS.dot(x,y) LinearAlgebra.dot(Any, Any)
9-
@reroute LinearAlgebra.BLAS.axpy!(x, y) LinearAlgebra.axpy!(Any,
9+
@reroute LinearAlgebra.BLAS.axpy!(a, x, y) LinearAlgebra.axpy!(Any,
1010
AbstractArray,
1111
AbstractArray)
1212

0 commit comments

Comments
 (0)