Skip to content

Commit 2cd54f1

Browse files
Update algorithms.jl
1 parent 247b597 commit 2cd54f1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/LinearSolveAutotune/src/algorithms.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ function get_available_algorithms(; skip_missing_algs::Bool = false)
1717
push!(algs, GenericLUFactorization())
1818
push!(alg_names, "GenericLUFactorization")
1919

20-
if blis_jll.is_available()
20+
# Disable BLiS for now
21+
if false # blis_jll.is_available()
2122
push!(algs, LinearSolve.BLISLUFactorization())
2223
push!(alg_names, "BLISLUFactorization")
2324
else

0 commit comments

Comments
 (0)