Skip to content

Commit a937efe

Browse files
Update algorithms.jl
1 parent 27985b8 commit a937efe

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lib/LinearSolveAutotune/src/algorithms.jl

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

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

0 commit comments

Comments
 (0)