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.
2 parents d9b3a96 + 2f86c16 commit 4144cc5Copy full SHA for 4144cc5
test/nopre/jet.jl
@@ -96,9 +96,11 @@ end
96
end
97
98
# Platform-specific factorizations (may not be available on all systems)
99
- # MKLLUFactorization: Fixed type stability issues in BLAS error logging
+ # MKLLUFactorization: Use target_modules to focus JET analysis on LinearSolve code
100
+ # This avoids false positives from Base.show and other stdlib runtime dispatches
101
+ # while still catching real type stability issues in the solver itself
102
if @isdefined(MKLLUFactorization)
- JET.@test_opt solve(prob, MKLLUFactorization())
103
+ JET.@test_opt target_modules=(LinearSolve, SciMLBase) solve(prob, MKLLUFactorization())
104
105
106
if Sys.isapple() && @isdefined(AppleAccelerateLUFactorization)
0 commit comments