netlib_src/
lib.rs

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