Skip to content

Commit

Permalink
Transition to LinearAlgebra.BLAS.libblastrampoline instead of `Base…
Browse files Browse the repository at this point in the history
….liblapack_name`

This change is in support of JuliaLang/julia#50699
  • Loading branch information
staticfloat committed Jun 10, 2024
1 parent 1b4ea4a commit 679af9f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/KalmanFilters.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ module KalmanFilters
Statistics,
FFTW

const liblapack = Base.liblapack_name
if isdefined(LinearAlgebra.BLAS, :libblastrampoline)
const liblapack = LinearAlgebra.BLAS.libblastrampoline
else
const liblapack = Base.liblapack_name
end

import Statistics: mean, cov

Expand Down

0 comments on commit 679af9f

Please sign in to comment.