|
7 | 7 | //! The following implementations are available: |
8 | 8 | //! |
9 | 9 | //! * `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], |
15 | 11 | //! * `netlib`, which is the reference one by [Netlib], |
16 | 12 | //! * `openblas`, which is the one in [OpenBLAS], and |
17 | 13 | //! * `r`, which is the one in [R]. |
|
20 | 16 | //! |
21 | 17 | //! ```toml |
22 | 18 | //! [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"] } |
28 | 27 | //! ``` |
29 | 28 | //! |
30 | 29 | //! [architecture]: https://blas-lapack-rs.github.io/architecture |
|
0 commit comments