File tree 2 files changed +33
-32
lines changed
2 files changed +33
-32
lines changed Original file line number Diff line number Diff line change 7
7
pull_request : {}
8
8
9
9
jobs :
10
- windows-intel-mkl :
10
+ windows :
11
11
runs-on : windows-2019
12
12
steps :
13
13
- uses : actions/checkout@v1
@@ -16,45 +16,46 @@ jobs:
16
16
command : test
17
17
args : --features=intel-mkl --no-default-features
18
18
19
- macos-intel-mkl :
19
+ macos :
20
20
runs-on : macos-10.15
21
+ env :
22
+ CC : gcc-9
23
+ FC : gfortran-9
24
+ LIBRARY_PATH : /usr/local/opt/gcc/lib/gcc/9
25
+ strategy :
26
+ fail-fast : false
27
+ matrix :
28
+ feature :
29
+ - netlib
30
+ - openblas
31
+ - intel-mkl
21
32
steps :
22
33
- uses : actions/checkout@v1
23
34
- uses : actions-rs/cargo@v1
24
35
with :
25
36
command : test
26
- args : --features=intel-mkl --no-default-features
27
-
28
- linux-intel-mkl :
29
- runs-on : ubuntu-18.04
30
- steps :
31
- - uses : actions/checkout@v1
32
- - uses : actions-rs/cargo@v1
33
- with :
34
- command : test
35
- args : --features=intel-mkl --no-default-features
36
-
37
- linux-netlib :
38
- runs-on : ubuntu-18.04
39
- steps :
40
- - uses : actions/checkout@v1
41
- - name : apt
42
- run : sudo apt update && sudo apt install -y gfortran
43
- - uses : actions-rs/cargo@v1
44
- with :
45
- command : test
46
- args : --features=netlib --no-default-features
37
+ args : --features=${{ matrix.feature }} --no-default-features
47
38
48
- linux-openblas :
39
+ linux :
49
40
runs-on : ubuntu-18.04
41
+ strategy :
42
+ fail-fast : false
43
+ matrix :
44
+ feature :
45
+ - netlib
46
+ - openblas
47
+ - intel-mkl
50
48
steps :
51
49
- uses : actions/checkout@v1
52
- - name : apt
53
- run : sudo apt update && sudo apt install -y gfortran
50
+ - name : apt-install gfortran
51
+ run : |
52
+ sudo apt update
53
+ sudo apt install -y gfortran
54
+ if : ${{ matrix.feature != 'intel-mkl' }}
54
55
- uses : actions-rs/cargo@v1
55
56
with :
56
57
command : test
57
- args : --features=openblas --no-default-features
58
+ args : --features=${{ matrix.feature }} --no-default-features
58
59
59
60
check-format :
60
61
runs-on : ubuntu-18.04
Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ ndarray-linalg = { version = "0.12", features = ["openblas"] }
43
43
44
44
### Tested Environments
45
45
46
- | Backend | Linux | Windows | macOS |
47
- | :-------| :-----:| :-------:| :-----:|
48
- | OpenBLAS| ✔️| ❌ | ❌ |
49
- | Netlib| ✔️| ❌ | ❌ |
50
- | Intel MKL| ✔️| ✔️| ✔️|
46
+ | Backend | Linux | Windows | macOS |
47
+ | :-------- | :-----:| :-------:| :-----:|
48
+ | OpenBLAS | ✔️ | - | ✔️ |
49
+ | Netlib | ✔️ | - | ✔️ |
50
+ | Intel MKL| ✔️ | ✔️ | ✔️ |
51
51
52
52
### For librarian
53
53
If you creating a library depending on this crate, we encourage you not to link any backend:
You can’t perform that action at this time.
0 commit comments