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 87bc0c1 commit b2e426cCopy full SHA for b2e426c
test/nopre/jet.jl
@@ -146,6 +146,11 @@ end
146
# Test for Default alg choosing for DualLinear Problems
147
# These should both produce a LinearCache
148
alg = LinearSolve.DefaultLinearSolver(LinearSolve.DefaultAlgorithmChoice.GenericLUFactorization)
149
- JET.@test_opt init(dual_prob, alg)
150
- JET.@test_opt init(dual_prob)
+ if VERSION < v"1.11"
+ JET.@test_opt init(dual_prob, alg) broken=true
151
+ JET.@test_opt init(dual_prob) broken=true
152
+ else
153
+ JET.@test_opt init(dual_prob, alg)
154
+ JET.@test_opt init(dual_prob)
155
+ end
156
end
0 commit comments