Skip to content

Commit bfd7bcc

Browse files
committed
Merge pull request #750 from carlobaldassi/linalg
Reorganization of linalg.jl in separate files
2 parents 9135075 + 022d924 commit bfd7bcc

10 files changed

+823
-600
lines changed

base/linalg.jl

+61-433
Large diffs are not rendered by default.

base/linalg_blas.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ function (*){T<:Union(Float64,Float32,Complex128,Complex64)}(A::StridedMatrix{T}
240240
if nA != mX; error("*: argument shapes do not match"); end
241241

242242
if stride(A, 1) != 1
243-
return invoke(*, (AbstractMatrix, AbstractVector), A, X)
243+
return invoke(*, (Matrix, Vector), A, X)
244244
end
245245

246246
# Result array does not need to be initialized as long as beta==0

0 commit comments

Comments
 (0)