Skip to content

Commit

Permalink
Update liblapack_name to the one from LinearAlgebra.BLAS (#50)
Browse files Browse the repository at this point in the history
* Update liblapack_name to the one from LinearAlgebra.BLAS

* Bump version to v0.5.4

* import LinearAlgebra
  • Loading branch information
jishnub authored Jul 28, 2023
1 parent ede6bf2 commit aae580d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "LowRankApprox"
uuid = "898213cb-b102-5a47-900c-97e73b919f73"
version = "0.5.3"
version = "0.5.4"

[deps]
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
Expand Down
3 changes: 2 additions & 1 deletion src/lapack.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
=#

module _LAPACK
import LinearAlgebra
import LinearAlgebra.BLAS: @blasfunc
using LinearAlgebra: BlasFloat, BlasInt, chkstride1
import Base: Nothing
const liblapack = Base.liblapack_name
const liblapack = LinearAlgebra.BLAS.liblapack

for (geqrf, gelqf, orgqr, orglq, elty) in
((:sgeqrf_, :sgelqf_, :sorgqr_, :sorglq_, :Float32 ),
Expand Down

2 comments on commit aae580d

@jishnub
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/88509

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.4 -m "<description of version>" aae580dbdbaf23db0da23b8c671ba7bfd67b0d03
git push origin v0.5.4

Please sign in to comment.