File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ There are three features corresponding to the backend implementations (`openblas
22
22
23
23
``` toml
24
24
[depencdencies ]
25
- ndarray = " 0.10 "
26
- ndarray-linalg = { version = " 0.8 " , features = [" openblas" ] }
25
+ ndarray = " 0.11 "
26
+ ndarray-linalg = { version = " 0.9 " , features = [" openblas" ] }
27
27
```
28
28
29
29
### link backend crate manually
@@ -32,8 +32,8 @@ You should link a LAPACKE implementation to a final crate (like binary executabl
32
32
33
33
``` toml
34
34
[depencdencies ]
35
- ndarray = " 0.10 "
36
- ndarray-linalg = " 0.8 "
35
+ ndarray = " 0.11 "
36
+ ndarray-linalg = " 0.9 "
37
37
openblas-src = " 0.5" # or another backend of your choice
38
38
39
39
```
@@ -51,8 +51,8 @@ If you creating a library depending on this crate, we encourage you not to link
51
51
52
52
``` toml
53
53
[depencdencies ]
54
- ndarray = " 0.10 "
55
- ndarray-linalg = { version = " 0.8 " , default-features = false }
54
+ ndarray = " 0.11 "
55
+ ndarray-linalg = { version = " 0.9 " , default-features = false }
56
56
```
57
57
58
58
However, if you hope simplicity instead of the flexibility, you can link your favorite backend in the way described above.
You can’t perform that action at this time.
0 commit comments