Skip to content

Commit 8bbf901

Browse files
committed
Use LinearAlgebra.BLAS.libblas
The `Base.libblas_name` bindings have been deprecated for a long time, don't use those.
1 parent 466b1c5 commit 8bbf901

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/BandedMatrices.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ import ArrayLayouts: MemoryLayout, transposelayout, triangulardata,
3636

3737
import FillArrays: AbstractFill, getindex_value, _broadcasted_zeros, unique_value, OneElement
3838

39-
const libblas = Base.libblas_name
40-
const liblapack = Base.liblapack_name
39+
const libblas = LinearAlgebra.BLAS.libblas
40+
const liblapack = LinearAlgebra.BLAS.liblapack
4141
const AdjointFact = isdefined(LinearAlgebra, :AdjointFactorization) ?
4242
LinearAlgebra.AdjointFactorization :
4343
Adjoint

0 commit comments

Comments
 (0)