Skip to content

Commit 81a76fb

Browse files
authored
Fix autotune for me (#692)
1 parent 08fc817 commit 81a76fb

File tree

3 files changed

+29
-26
lines changed

3 files changed

+29
-26
lines changed

lib/LinearSolveAutotune/Project.toml

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,50 +4,52 @@ authors = ["SciML"]
44
version = "1.0.0"
55

66
[deps]
7-
LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
8-
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
97
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
8+
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf"
109
CPUSummary = "2a0fbf3d-bb9c-48f3-b0a9-814d99fd7ab9"
10+
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
1111
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
12+
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
1213
GitHub = "bc5e4493-9b4d-5f90-b8aa-2b2bcaad7a26"
13-
gh_cli_jll = "5d31d589-30fb-542f-b82d-10325e863e38"
14+
LAPACK_jll = "51474c39-65e3-53ba-86ba-03b1b862ec14"
15+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
16+
LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae"
17+
MKL_jll = "856f044c-d86e-5d09-b602-aeab76dc8ba7"
18+
Metal = "dde4c033-4e86-420c-a63e-0dd931031962"
1419
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
15-
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
1620
Preferences = "21216c6a-2e73-6563-6e65-726566657250"
17-
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
18-
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
19-
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
21+
PrettyTables = "08abe8d2-0d0c-5749-adfa-8a2ac140af0d"
2022
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
21-
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
22-
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2323
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
24+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
2425
RecursiveFactorization = "f2c3362d-daeb-58d1-803e-2bc74f2840b4"
26+
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
27+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2528
blis_jll = "6136c539-28a5-5bf0-87cc-b183200dce32"
26-
LAPACK_jll = "51474c39-65e3-53ba-86ba-03b1b862ec14"
27-
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
28-
Metal = "dde4c033-4e86-420c-a63e-0dd931031962"
29+
gh_cli_jll = "5d31d589-30fb-542f-b82d-10325e863e38"
2930

3031
[compat]
31-
LinearSolve = "3"
32-
BenchmarkTools = "1"
3332
Base64 = "1"
33+
BenchmarkTools = "1"
3434
CPUSummary = "0.2"
35+
CUDA = "5"
3536
DataFrames = "1"
37+
Dates = "1"
3638
GitHub = "5"
37-
gh_cli_jll = "2"
39+
LAPACK_jll = "3"
40+
LinearAlgebra = "1"
41+
LinearSolve = "3"
42+
MKL_jll = "2025.2.0"
43+
Metal = "1"
3844
Plots = "1"
39-
PrettyTables = "2"
4045
Preferences = "1"
41-
Statistics = "1"
42-
Random = "1"
43-
LinearAlgebra = "1"
46+
PrettyTables = "2"
4447
Printf = "1"
45-
Dates = "1"
46-
Test = "1"
4748
ProgressMeter = "1"
49+
Random = "1"
4850
RecursiveFactorization = "0.2"
51+
Statistics = "1"
52+
Test = "1"
4953
blis_jll = "0.9.0"
50-
LAPACK_jll = "3"
51-
CUDA = "5"
52-
Metal = "1"
53-
julia = "1.10"
54+
gh_cli_jll = "2"
55+
julia = "1.10"

lib/LinearSolveAutotune/src/LinearSolveAutotune.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ using CPUSummary
1818
using RecursiveFactorization
1919
using blis_jll
2020
using LAPACK_jll
21+
using MKL_jll
2122
using CUDA
2223
using Metal
2324

lib/LinearSolveAutotune/src/algorithms.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function get_available_algorithms(; skip_missing_algs::Bool = false)
2525
end
2626

2727
# MKL if available
28-
if mkl_jll.is_available()
28+
if MKL_jll.is_available()
2929
push!(algs, MKLLUFactorization())
3030
push!(alg_names, "MKLLUFactorization")
3131
end

0 commit comments

Comments
 (0)