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
6 changes: 4 additions & 2 deletions test/nopre/jet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -96,9 +96,11 @@ end
end

# Platform-specific factorizations (may not be available on all systems)
# MKLLUFactorization: Fixed type stability issues in BLAS error logging
# MKLLUFactorization: Use target_modules to focus JET analysis on LinearSolve code
# This avoids false positives from Base.show and other stdlib runtime dispatches
# while still catching real type stability issues in the solver itself
if @isdefined(MKLLUFactorization)
JET.@test_opt solve(prob, MKLLUFactorization())
JET.@test_opt target_modules=(LinearSolve, SciMLBase) solve(prob, MKLLUFactorization())
end

if Sys.isapple() && @isdefined(AppleAccelerateLUFactorization)
Expand Down
Loading