File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,13 @@ version = "0.1.1"
5
5
6
6
[deps ]
7
7
LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
8
+ blis32_jll = " e47b3055-b30e-52b1-9cd4-aea7f6c39f40"
8
9
blis_jll = " 6136c539-28a5-5bf0-87cc-b183200dce32"
9
10
10
11
[compat ]
11
12
blis_jll = " 1.0"
12
- julia = " 1.8"
13
+ blis32_jll = " 1.0"
14
+ julia = " 1.9"
13
15
14
16
[extras ]
15
17
Libdl = " 8f399da3-3557-5675-b5ff-fb832c97cbdb"
Original file line number Diff line number Diff line change 1
1
module BLISBLAS
2
2
3
+ using blis32_jll
3
4
using blis_jll
4
5
using LinearAlgebra
5
6
@@ -16,6 +17,11 @@ function set_num_threads(nthreads)
16
17
end
17
18
18
19
function __init__ ()
20
+ if blis32_jll. is_available ()
21
+ BLAS. lbt_forward (blis32, clear= false )
22
+ else
23
+ @warn (" blis32_jll artifact doesn't seem to be available for your platform!" )
24
+ end
19
25
if blis_jll. is_available ()
20
26
BLAS. lbt_forward (blis, clear= false )
21
27
else
You can’t perform that action at this time.
0 commit comments