From b3196ff8ffaa987d99be3eb422fa39362dabc82d Mon Sep 17 00:00:00 2001 From: nathanemac <91251698+nathanemac@users.noreply.github.com> Date: Thu, 5 Sep 2024 13:16:39 -0400 Subject: [PATCH] Include OpenBLAS32_jll and proxTV_jll in project.toml --- Project.toml | 4 ++++ src/ProxTV.jl | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/Project.toml b/Project.toml index ae000a2..c19e5f6 100644 --- a/Project.toml +++ b/Project.toml @@ -5,3 +5,7 @@ version = "0.1.0" [compat] julia = "1.9" + +[deps] +OpenBLAS32_jll = "656ef2d0-ae68-5445-9ca0-591084a874a2" +proxTV_jll = "700117f8-5dbb-54dd-9908-6f3eb0e21f87" diff --git a/src/ProxTV.jl b/src/ProxTV.jl index 9c23e84..27b415e 100644 --- a/src/ProxTV.jl +++ b/src/ProxTV.jl @@ -1,7 +1,13 @@ module ProxTV +using OpenBLAS32_jll # Include wrappers and the main library include("libproxtv.jl") include("gen/wrapper.jl") +config = LinearAlgebra.BLAS.lbt_get_config() +if !any(lib -> lib.interface == :lp64, config.loaded_libs) + LinearAlgebra.BLAS.lbt_forward(OpenBLAS32_jll.libopenblas_path) +end + end