diff --git a/.DS_Store b/.DS_Store index 1c9a43a..9e1d294 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/src/ProxTV.jl b/src/ProxTV.jl index 615417b..9363b6b 100644 --- a/src/ProxTV.jl +++ b/src/ProxTV.jl @@ -1,21 +1,15 @@ module ProxTV using OpenBLAS32_jll +using LAPACK_jll using LinearAlgebra # Include wrappers and the main library include("libproxtv.jl") # include("gen/wrapper.jl") -function configure_blas() - config = LinearAlgebra.BLAS.lbt_get_config() - if !any(lib -> lib.interface == :lp64, config.loaded_libs) - @info "No LP64 BLAS found, forwarding to OpenBLAS32_jll" - LinearAlgebra.BLAS.lbt_forward(OpenBLAS32_jll.libopenblas_path) - else - @info "BLAS library is already loaded correctly" - end +config = LinearAlgebra.BLAS.lbt_get_config() +if !any(lib -> lib.interface == :lp64, config.loaded_libs) + LinearAlgebra.BLAS.lbt_forward(OpenBLAS32_jll.libopenblas_path) end -configure_blas() - end