Skip to content

Commit 08d96d6

Browse files
1 parent 2ce5892 commit 08d96d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lu.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ function reckernel!(A::AbstractMatrix{T}, pivot::Val{Pivot}, m, n, ipiv, info, b
184184
end
185185

186186
function schur_complement!(𝐂, 𝐀, 𝐁)
187-
@tturbo for m 1:size(𝐀,1), n 1:size(𝐁,2)
187+
@tturbo warn_check_args=false for m 1:size(𝐀,1), n 1:size(𝐁,2)
188188
𝐂ₘₙ = zero(eltype(𝐂))
189189
for k 1:size(𝐀,2)
190190
𝐂ₘₙ -= 𝐀[m,k] * 𝐁[k,n]

0 commit comments

Comments
 (0)