File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -38,24 +38,25 @@ PrecompileTools.@recompile_invalidations begin
3838
3939 # wrap
4040 import Krylov
41-
4241 using SciMLBase
43-
44- using MKL_jll
45-
4642 import Preferences
4743end
4844
4945if Preferences. @load_preference (" TriggerMKLLBT" , true )
5046 using MKL
5147end
5248
49+ if Preferences. @load_preference (" LoadMKL_JLL" , true )
50+ using MKL_jll
51+ const usemkl = MKL_jll. is_available ()
52+ else
53+ const usemkl = false
54+ end
55+
5356using Reexport
5457@reexport using SciMLBase
5558using SciMLBase: _unwrap_val
5659
57- const usemkl = MKL_jll. is_available ()
58-
5960abstract type SciMLLinearSolveAlgorithm <: SciMLBase.AbstractLinearAlgorithm end
6061abstract type AbstractFactorization <: SciMLLinearSolveAlgorithm end
6162abstract type AbstractKrylovSubspaceMethod <: SciMLLinearSolveAlgorithm end
You can’t perform that action at this time.
0 commit comments