1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
//! Source of [BLAS] and [LAPACK] via [OpenBLAS].
//!
//! The usage of the package is explained [here][usage].
//!
//! The following Cargo features are supported:
//!
//! * `cblas` to build CBLAS (enabled by default),
//! * `lapacke` to build LAPACKE (enabled by default),
//! * `static` to link to OpenBLAS statically, and
//! * `system` to skip building the bundled OpenBLAS.
//!
//! [blas]: https://en.wikipedia.org/wiki/BLAS
//! [lapack]: https://en.wikipedia.org/wiki/LAPACK
//! [openblas]: http://www.openblas.net
//! [usage]: https://blas-lapack-rs.github.io/usage

#![no_std]