File tree 1 file changed +7
-6
lines changed
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
38
38
39
39
# wrap
40
40
import Krylov
41
-
42
41
using SciMLBase
43
-
44
- using MKL_jll
45
-
46
42
import Preferences
47
43
end
48
44
49
45
if Preferences. @load_preference (" TriggerMKLLBT" , true )
50
46
using MKL
51
47
end
52
48
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
+
53
56
using Reexport
54
57
@reexport using SciMLBase
55
58
using SciMLBase: _unwrap_val
56
59
57
- const usemkl = MKL_jll. is_available ()
58
-
59
60
abstract type SciMLLinearSolveAlgorithm <: SciMLBase.AbstractLinearAlgorithm end
60
61
abstract type AbstractFactorization <: SciMLLinearSolveAlgorithm end
61
62
abstract type AbstractKrylovSubspaceMethod <: SciMLLinearSolveAlgorithm end
You can’t perform that action at this time.
0 commit comments