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
59
59
end
60
60
end
61
61
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... )
63
63
m, n = size (A)
64
64
minmn = min (m, n)
65
65
npivot = normalize_pivot (pivot)
@@ -87,7 +87,7 @@ recurse(_) = false
87
87
_ptrarray (ipiv) = PtrArray (ipiv)
88
88
_ptrarray (ipiv:: NotIPIV ) = ipiv
89
89
function lu! (A:: AbstractMatrix{T} , ipiv:: AbstractVector{<:Integer} ,
90
- pivot = Val (true ), thread = Val (true );
90
+ pivot = Val (true ), thread = Val (false );
91
91
check:: Bool = true ,
92
92
# the performance is not sensitive wrt blocksize, and 8 is a good default
93
93
blocksize:: Integer = length (A) ≥ 40_000 ? 8 : 16 ,
You can’t perform that action at this time.
0 commit comments