Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
libblastrampoline_jll = "8e850b90-86db-534c-a0d3-1478176c7d93"

[compat]
ArrayInterface = "3, 4"
Expand Down
8 changes: 7 additions & 1 deletion src/StegrWork.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@ using LinearAlgebra
using LinearAlgebra.BLAS: @blasfunc
using LinearAlgebra: BlasInt
import LinearAlgebra.LAPACK: stegr!
const liblapack = Base.liblapack_name

if VERSION < v"1.7"
const liblapack = Base.liblapack_name
else
using libblastrampoline_jll
const liblapack = libblastrampoline_jll.libblastrampoline
end

mutable struct StegrWork{T<:Real}
jobz::Char
Expand Down