netlib_src/
lib.rs

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