We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f453201 commit 1296504Copy full SHA for 1296504
src/BLIS.jl
@@ -12,11 +12,13 @@ __init__() = begin
12
# BLIS installation overriden by environmental variables.
13
@info "Using custom defined BLIS installation instead of blis_jll."
14
global libblis = dlopen(string(get(ENV, "BLISDIR", ""), "/lib/libblis"))
15
+ BLAS.lbt_forward(libblis)
16
else
17
blis_path = blis_jll.blis_path
18
# Use BinaryBuilder provided BLIS library.
19
@info "blis_jll yields BLIS installation: $blis_path."
20
global libblis = dlopen(blis_path)
21
22
end
23
24
0 commit comments