Skip to content

Commit

Permalink
Use LinearAlgebra.BLAS.libblas
Browse files Browse the repository at this point in the history
The `Base.libblas_name` bindings have been deprecated for a long time,
don't use those.
  • Loading branch information
staticfloat committed Jul 27, 2023
1 parent 466b1c5 commit 8bbf901
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/BandedMatrices.jl
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ import ArrayLayouts: MemoryLayout, transposelayout, triangulardata,

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

const libblas = Base.libblas_name
const liblapack = Base.liblapack_name
const libblas = LinearAlgebra.BLAS.libblas
const liblapack = LinearAlgebra.BLAS.liblapack
const AdjointFact = isdefined(LinearAlgebra, :AdjointFactorization) ?
LinearAlgebra.AdjointFactorization :
Adjoint
Expand Down

0 comments on commit 8bbf901

Please sign in to comment.