Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions test/nopre/jet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ prob_sparse_spd = LinearProblem(A_sparse_spd, b)
JET.@test_opt solve(prob, GenericLUFactorization())
JET.@test_opt solve(prob, DiagonalFactorization())
JET.@test_opt solve(prob, SimpleLUFactorization())
JET.@test_opt solve(prob_spd, NormalCholeskyFactorization()) broken=true
JET.@test_opt solve(prob, NormalBunchKaufmanFactorization())
# JET.@test_opt solve(prob_spd, NormalCholeskyFactorization())
# JET.@test_opt solve(prob, NormalBunchKaufmanFactorization())

# CholeskyFactorization and SVDFactorization now pass JET tests
JET.@test_opt solve(prob_spd, CholeskyFactorization()) broken=true
JET.@test_opt solve(prob, SVDFactorization()) broken=true
# JET.@test_opt solve(prob_spd, CholeskyFactorization())
# JET.@test_opt solve(prob, SVDFactorization())

# Tests with known type stability issues - marked as broken
JET.@test_opt solve(prob, QRFactorization()) broken=true
Expand All @@ -45,7 +45,7 @@ end

@testset "JET Tests for Extension Factorizations" begin
# RecursiveFactorization.jl extensions
JET.@test_opt solve(prob, RFLUFactorization())
# JET.@test_opt solve(prob, RFLUFactorization())

# Tests with known type stability issues
JET.@test_opt solve(prob, FastLUFactorization()) broken=true
Expand Down Expand Up @@ -107,4 +107,4 @@ end
# Test the default solver selection
JET.@test_opt solve(prob) broken=true
JET.@test_opt solve(prob_sparse) broken=true
end
end
Loading