Skip to content

Commit 20e71ce

Browse files
committed
remove OpenBLAS32_jll dependency
Julia already ships an ILP64 BLAS / LAPACK with OpenBLAS_jll. (This PR simply updates #97.)
1 parent 5b809d5 commit 20e71ce

2 files changed

Lines changed: 1 addition & 14 deletions

File tree

Project.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,17 @@ version = "0.2.1"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
8-
OpenBLAS32_jll = "656ef2d0-ae68-5445-9ca0-591084a874a2"
98
ProximalOperators = "a725b495-10eb-56fe-b38b-717eba820537"
109
QRMumps = "422b30a1-cc69-4d85-abe7-cc07b540c444"
1110
Roots = "f2b01f46-fcfa-551c-844a-d8ac1e96c665"
1211
SparseMatricesCOO = "fa32481b-f100-4b48-8dc8-c62f61b13870"
1312
libblastrampoline_jll = "8e850b90-86db-534c-a0d3-1478176c7d93"
1413

1514
[compat]
16-
OpenBLAS32_jll = "0.3.9"
1715
ProximalOperators = "0.15"
1816
QRMumps = "^0.3.0"
1917
Roots = "^1.0.0"
20-
julia = "^1.3.0"
18+
julia = "^1.10.0"
2119

2220
[extras]
2321
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

src/ShiftedProximalOperators.jl

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,9 @@ using QRMumps
55
using SparseMatricesCOO
66

77
using libblastrampoline_jll
8-
using OpenBLAS32_jll
98
using ProximalOperators
109
using Roots
1110

12-
function __init__()
13-
# Ensure LBT points to a valid BLAS for psvd()
14-
if VERSION v"1.7"
15-
config = LinearAlgebra.BLAS.lbt_get_config()
16-
if !any(lib -> lib.interface == :lp64, config.loaded_libs)
17-
LinearAlgebra.BLAS.lbt_forward(OpenBLAS32_jll.libopenblas_path)
18-
end
19-
end
20-
end
21-
2211
export ShiftedProximableFunction
2312
export prox, prox!, iprox, iprox!, set_radius!, shift!, shifted, set_bounds!
2413

0 commit comments

Comments
 (0)