Skip to content

Commit 233ce6b

Browse files
authored
Merge pull request #20 from JuliaLinearAlgebra/vs/blis-2.0
Copy LinearAlgebra BLAS tests and comment out the trsv tests
2 parents e7e4008 + ff54c84 commit 233ce6b

File tree

5 files changed

+791
-9
lines changed

5 files changed

+791
-9
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,13 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
version:
23-
- '1.10'
2423
- '1'
2524
os:
2625
- ubuntu-latest
2726
- windows-latest
2827
arch:
2928
- x64
3029
include:
31-
- os: macOS-latest
32-
arch: aarch64
33-
version: '1.10'
3430
- os: macOS-latest
3531
arch: aarch64
3632
version: '1'

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name = "BLISBLAS"
22
uuid = "6f275bd8-fec0-4d39-945b-7e95a765fa1e"
33
authors = ["Carsten Bauer <[email protected]> and contributors"]
4-
version = "0.1.1"
4+
version = "0.2.0"
55

66
[deps]
77
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
88
blis_jll = "6136c539-28a5-5bf0-87cc-b183200dce32"
99

1010
[compat]
1111
blis_jll = "2"
12-
julia = "1.10"
12+
julia = "1.12"
1313

1414
[extras]
1515
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb"

src/BLISBLAS.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ end
1717

1818
function __init__()
1919
if blis_jll.is_available()
20-
BLAS.lbt_forward(blis, clear=false)
20+
BLAS.lbt_forward(blis, clear=true)
2121
else
2222
@warn("blis_jll artifact doesn't seem to be available for your platform!")
2323
end

0 commit comments

Comments
 (0)