Skip to content

Commit fb6fd69

Browse files
authored
Undo an unintentional change
1 parent b576e40 commit fb6fd69

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/default.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@ function defaultalg(A::GPUArraysCore.AbstractGPUArray, b, ::OperatorAssumptions{
5757
end
5858

5959
function defaultalg(A, b::GPUArraysCore.AbstractGPUArray, ::OperatorAssumptions{true})
60-
KrylovJL_GMRES()
60+
if VERSION >= v"1.8-"
61+
LUFactorization()
62+
else
63+
QRFactorization()
64+
end
6165
end
6266

6367
function defaultalg(A::SciMLBase.AbstractDiffEqOperator, b,

0 commit comments

Comments
 (0)