File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ if CUSTOMIZABLE_PIVOT
5959 end
6060end
6161
62- function lu! (A, pivot = Val (true ), thread = Val (true ); check = true , kwargs... )
62+ function lu! (A, pivot = Val (true ), thread = Val (false ); check = true , kwargs... )
6363 m, n = size (A)
6464 minmn = min (m, n)
6565 npivot = normalize_pivot (pivot)
@@ -87,7 +87,7 @@ recurse(_) = false
8787_ptrarray (ipiv) = PtrArray (ipiv)
8888_ptrarray (ipiv:: NotIPIV ) = ipiv
8989function lu! (A:: AbstractMatrix{T} , ipiv:: AbstractVector{<:Integer} ,
90- pivot = Val (true ), thread = Val (true );
90+ pivot = Val (true ), thread = Val (false );
9191 check:: Bool = true ,
9292 # the performance is not sensitive wrt blocksize, and 8 is a good default
9393 blocksize:: Integer = length (A) ≥ 40_000 ? 8 : 16 ,
You can’t perform that action at this time.
0 commit comments