openblas_src/
lib.rs

1//! Source of [BLAS] and [LAPACK] via [OpenBLAS].
2//!
3//! ## [Architecture]
4//!
5//! ## Configuration
6//!
7//! The following Cargo features are supported:
8//!
9//! * `cache` to build in shared directory e.g. `$XDG_DATA_HOME/openblas_build/`
10//!   instead of `target` (see README),
11//! * `cblas` to build CBLAS (enabled by default),
12//! * `lapacke` to build LAPACKE (enabled by default),
13//! * `static` to link to OpenBLAS statically, and
14//! * `system` to skip building the bundled OpenBLAS.
15//!
16//! [architecture]: https://blas-lapack-rs.github.io/architecture
17//! [blas]: https://en.wikipedia.org/wiki/BLAS
18//! [lapack]: https://en.wikipedia.org/wiki/LAPACK
19//! [openblas]: http://www.openblas.net
20
21#![no_std]