We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23906a8 commit d359762Copy full SHA for d359762
src/linalg.jl
@@ -112,11 +112,11 @@ mulαβ!(C::StridedVecOrMat{T}, A::StridedVecOrMat{T}, adjB::Adjoint{T,<:Blocked
112
mulαβ!(C::StridedVector{T}, adjA::Adjoint{T,<:StridedMatrix{T}}, B::StridedVector{T},
113
α=true, β=false) where {T<:BlasFloat} = BLAS.gemv!('C', T(α), adjA.parent, B, T(β), C)
114
115
-mulαβ!( C::StridedVector{T}, adjA::Adjoint{T,<:SparseMatrixCSC{T}}, B::StridedVector{T},
+mulαβ!(C::StridedVector{T}, adjA::Adjoint{T,<:SparseMatrixCSC{T}}, B::StridedVector{T},
116
α=true, β=false) where {T} = mul!(C, adjA, B, T(α), T(β))
117
118
mulαβ!(C::StridedVector{T}, adjA::Adjoint{T,<:BlockedSparse{T}}, B::StridedVector{T},
119
- α=true, β=false) where {T} = mulαβ!(α, adjA.parent.cscmat', B, β, C)
+ α=true, β=false) where {T} = mulαβ!(C, adjA.parent.cscmat', B, α, β)
120
121
function LinearAlgebra.ldiv!(adjA::Adjoint{T,<:LowerTriangular{T,UniformBlockDiagonal{T}}},
122
B::StridedVector{T}) where {T}
0 commit comments