Skip to content

Commit cd0da66

Browse files
committed
Update comments LAPACK -> BLAS
1 parent b3ec55f commit cd0da66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/triangular.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1208,14 +1208,14 @@ generic_trimatmul!(c::StridedVector{T}, uploc, isunitc, tfun::Function, A::Strid
12081208
function generic_trimatmul!(C::StridedMatrix{T}, uploc, isunitc, tfun::Function, A::StridedMatrix{T}, B::AbstractMatrix{T}) where {T<:BlasFloat}
12091209
if stride(C,1) == stride(A,1) == 1
12101210
BLAS.trmm!('L', uploc, tfun === identity ? 'N' : tfun === transpose ? 'T' : 'C', isunitc, one(T), A, C === B ? C : copyto!(C, B))
1211-
else # incompatible with LAPACK
1211+
else # incompatible with BLAS
12121212
@invoke generic_trimatmul!(C::AbstractMatrix, uploc, isunitc, tfun::Function, A::AbstractMatrix, B::AbstractMatrix)
12131213
end
12141214
end
12151215
function generic_mattrimul!(C::StridedMatrix{T}, uploc, isunitc, tfun::Function, A::AbstractMatrix{T}, B::StridedMatrix{T}) where {T<:BlasFloat}
12161216
if stride(C,1) == stride(B,1) == 1
12171217
BLAS.trmm!('R', uploc, tfun === identity ? 'N' : tfun === transpose ? 'T' : 'C', isunitc, one(T), B, C === A ? C : copyto!(C, A))
1218-
else # incompatible with LAPACK
1218+
else # incompatible with BLAS
12191219
@invoke generic_mattrimul!(C::AbstractMatrix, uploc, isunitc, tfun::Function, A::AbstractMatrix, B::AbstractMatrix)
12201220
end
12211221
end
@@ -1230,7 +1230,7 @@ end
12301230
function generic_mattridiv!(C::StridedMatrix{T}, uploc, isunitc, tfun::Function, A::AbstractMatrix{T}, B::StridedMatrix{T}) where {T<:BlasFloat}
12311231
if stride(C,1) == stride(B,1) == 1
12321232
BLAS.trsm!('R', uploc, tfun === identity ? 'N' : tfun === transpose ? 'T' : 'C', isunitc, one(T), B, C === A ? C : copyto!(C, A))
1233-
else # incompatible with LAPACK
1233+
else # incompatible with BLAS
12341234
@invoke generic_mattridiv!(C::AbstractMatrix, uploc, isunitc, tfun::Function, A::AbstractMatrix, B::AbstractMatrix)
12351235
end
12361236
end

0 commit comments

Comments
 (0)