Skip to content

Commit 1296504

Browse files
committed
Load the symbols of BLIS when we use this package
1 parent f453201 commit 1296504

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/BLIS.jl

+2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,13 @@ __init__() = begin
1212
# BLIS installation overriden by environmental variables.
1313
@info "Using custom defined BLIS installation instead of blis_jll."
1414
global libblis = dlopen(string(get(ENV, "BLISDIR", ""), "/lib/libblis"))
15+
BLAS.lbt_forward(libblis)
1516
else
1617
blis_path = blis_jll.blis_path
1718
# Use BinaryBuilder provided BLIS library.
1819
@info "blis_jll yields BLIS installation: $blis_path."
1920
global libblis = dlopen(blis_path)
21+
BLAS.lbt_forward(libblis)
2022
end
2123
end
2224

0 commit comments

Comments
 (0)