We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6169a76 commit 34e4fc5Copy full SHA for 34e4fc5
Project.toml
@@ -1,7 +1,7 @@
1
name = "LinearSolve"
2
uuid = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
3
authors = ["SciML"]
4
-version = "2.0.0"
+version = "2.0.1"
5
6
[deps]
7
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
src/default.jl
@@ -140,7 +140,7 @@ end
140
# Ambiguity handling
141
function defaultalg(A::GPUArraysCore.AbstractGPUArray, b::GPUArraysCore.AbstractGPUArray,
142
assump::OperatorAssumptions)
143
- if assump.condition === OperatorConodition.IllConditioned || !assump.issq
+ if assump.condition === OperatorCondition.IllConditioned || !assump.issq
144
DefaultLinearSolver(DefaultAlgorithmChoice.QRFactorization)
145
else
146
@static if VERSION >= v"1.8-"
0 commit comments