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.
1 parent 50bd502 commit 0a4f96aCopy full SHA for 0a4f96a
test/default_algs.jl
@@ -9,8 +9,14 @@ solve(prob)
9
prob = LinearProblem(rand(50, 50), rand(50))
10
solve(prob)
11
12
-@test LinearSolve.defaultalg(nothing, zeros(600)).alg ===
13
- LinearSolve.DefaultAlgorithmChoice.GenericLUFactorization
+if LinearSolve.usemkl
+ @test LinearSolve.defaultalg(nothing, zeros(600)).alg ===
14
+ LinearSolve.DefaultAlgorithmChoice.MKLLUFactorization
15
+else
16
17
+ LinearSolve.DefaultAlgorithmChoice.LUFactorization
18
+end
19
+
20
prob = LinearProblem(rand(600, 600), rand(600))
21
22
0 commit comments