File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,12 @@ version = "0.2.0"
55
66[deps ]
77LinearAlgebra = " 37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
8+ blis32_jll = " e47b3055-b30e-52b1-9cd4-aea7f6c39f40"
89blis_jll = " 6136c539-28a5-5bf0-87cc-b183200dce32"
910
1011[compat ]
1112blis_jll = " 2"
13+ blis32_jll = " 2"
1214julia = " 1.12"
1315
1416[extras ]
Original file line number Diff line number Diff line change 11module BLISBLAS
22
3+ using blis32_jll
34using blis_jll
45using LinearAlgebra
56
@@ -16,6 +17,11 @@ function set_num_threads(nthreads)
1617end
1718
1819function __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
1925 if blis_jll. is_available ()
2026 BLAS. lbt_forward (blis, clear= true )
2127 else
You can’t perform that action at this time.
0 commit comments