Skip to content

Commit 9d1b0f8

Browse files
committed
ndarray-linalg = "0.10"
1 parent 7c11c3f commit 9d1b0f8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Currently three LAPACKE implementations are supported and tested:
1818
- needs `cmake` and `gfortran`
1919
- [Intel MKL](https://github.com/termoshtt/rust-intel-mkl) (non-free license, see the linked page)
2020
- needs `curl`
21+
2122
There are two ways to link LAPACKE backend:
2223

2324
### backend features (recommended)
@@ -26,7 +27,7 @@ There are three features corresponding to the backend implementations (`openblas
2627
```toml
2728
[dependencies]
2829
ndarray = "0.12"
29-
ndarray-linalg = { version = "0.9", features = ["openblas"] }
30+
ndarray-linalg = { version = "0.10", features = ["openblas"] }
3031
```
3132

3233
### link backend crate manually
@@ -36,7 +37,7 @@ You should link a LAPACKE implementation to a final crate (like binary executabl
3637
```toml
3738
[dependencies]
3839
ndarray = "0.12"
39-
ndarray-linalg = "0.9"
40+
ndarray-linalg = "0.10"
4041
openblas-src = "0.5" # or another backend of your choice
4142

4243
```
@@ -55,7 +56,7 @@ If you creating a library depending on this crate, we encourage you not to link
5556
```toml
5657
[dependencies]
5758
ndarray = "0.12"
58-
ndarray-linalg = { version = "0.9", default-features = false }
59+
ndarray-linalg = { version = "0.10", default-features = false }
5960
```
6061

6162
However, if you hope simplicity instead of the flexibility, you can link your favorite backend in the way described above.

0 commit comments

Comments
 (0)