Skip to content

Commit 39f4447

Browse files
authored
Merge pull request #3 from blegat/dot
Add missing import of dot
2 parents 12a23dd + f0101df commit 39f4447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/genericblas.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import LinearAlgebra: BLAS, BlasFloat, norm
1+
import LinearAlgebra: BLAS, BlasFloat, norm, dot
22

33
genblas_dot(x::Vector{T}, y::Vector{T}) where {T<:BlasFloat} = BLAS.dot(x, y)
44
genblas_dot(x, y) = dot(x,y)

0 commit comments

Comments
 (0)