Skip to content

Commit b85ee71

Browse files
committed
Update the documentation
1 parent 7546096 commit b85ee71

File tree

2 files changed

+17
-22
lines changed

2 files changed

+17
-22
lines changed

README.md

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,16 @@ An implementation can be chosen as follows:
1919

2020
```toml
2121
[dependencies]
22-
lapack-src = { version = "0.12", features = ["accelerate"] }
23-
lapack-src = { version = "0.12", features = ["intel-mkl"] }
24-
lapack-src = { version = "0.12", features = ["netlib"] }
25-
lapack-src = { version = "0.12", features = ["openblas"] }
26-
lapack-src = { version = "0.12", features = ["r"] }
22+
lapack-src = { version = "0.13", features = ["accelerate"] }
23+
lapack-src = { version = "0.13", features = ["intel-mkl-dynamic-parallel"] }
24+
lapack-src = { version = "0.13", features = ["intel-mkl-dynamic-sequential"] }
25+
lapack-src = { version = "0.13", features = ["intel-mkl-static-parallel"] }
26+
lapack-src = { version = "0.13", features = ["intel-mkl-static-sequential"] }
27+
lapack-src = { version = "0.13", features = ["netlib"] }
28+
lapack-src = { version = "0.13", features = ["openblas"] }
29+
lapack-src = { version = "0.13", features = ["r"] }
2730
```
2831

29-
### Intel MKL Configuration
30-
31-
The `intel-mkl` feature will *statically* link the *sequential LP64* version of
32-
the MKL library. To link other versions of the library, check the `intel-mkl-*-*-*`
33-
features inside this crate, which are analogous to the feature flags of
34-
the [`intel-mkl-src` crate] (https://crates.io/crates/intel-mkl-src).
35-
3632
## Contribution
3733

3834
Your contribution is highly appreciated. Do not hesitate to open an issue or a

src/lib.rs

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@
77
//! The following implementations are available:
88
//!
99
//! * `accelerate`, which is the one in the [Accelerate] framework (macOS only),
10-
//! * `intel-mkl-*`, which is the one in [Intel MKL], where
11-
//! * `intel-mkl-dynamic-parallel` dynamically links the parallel backend of MKL
12-
//! * `intel-mkl-dynamic-sequential` dynamically links the sequential backend of MKL
13-
//! * `intel-mkl-static-parallel` statically links the parallel backend of MKL
14-
//! * `intel-mkl-static-sequential` statically links the sequential backend of MKL
10+
//! * `intel-mkl`, which is the one in [Intel MKL],
1511
//! * `netlib`, which is the reference one by [Netlib],
1612
//! * `openblas`, which is the one in [OpenBLAS], and
1713
//! * `r`, which is the one in [R].
@@ -20,11 +16,14 @@
2016
//!
2117
//! ```toml
2218
//! [dependencies]
23-
//! lapack-src = { version = "0.12", features = ["accelerate"] }
24-
//! lapack-src = { version = "0.12", features = ["intel-mkl"] }
25-
//! lapack-src = { version = "0.12", features = ["netlib"] }
26-
//! lapack-src = { version = "0.12", features = ["openblas"] }
27-
//! lapack-src = { version = "0.12", features = ["r"] }
19+
//! lapack-src = { version = "0.13", features = ["accelerate"] }
20+
//! lapack-src = { version = "0.13", features = ["intel-mkl-dynamic-parallel"] }
21+
//! lapack-src = { version = "0.13", features = ["intel-mkl-dynamic-sequential"] }
22+
//! lapack-src = { version = "0.13", features = ["intel-mkl-static-parallel"] }
23+
//! lapack-src = { version = "0.13", features = ["intel-mkl-static-sequential"] }
24+
//! lapack-src = { version = "0.13", features = ["netlib"] }
25+
//! lapack-src = { version = "0.13", features = ["openblas"] }
26+
//! lapack-src = { version = "0.13", features = ["r"] }
2827
//! ```
2928
//!
3029
//! [architecture]: https://blas-lapack-rs.github.io/architecture

0 commit comments

Comments
 (0)