Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 1 addition & 19 deletions openblas-src/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,21 +1,3 @@
//! Source of [BLAS] and [LAPACK] via [OpenBLAS].
//!
//! ## [Architecture]
//!
//! ## Configuration
//!
//! The following Cargo features are supported:
//!
//! * `cache` to build in shared directory e.g. `$XDG_DATA_HOME/openblas_build/`
//! instead of `target` (see README),
//! * `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.
//!
//! [architecture]: https://blas-lapack-rs.github.io/architecture
//! [blas]: https://en.wikipedia.org/wiki/BLAS
//! [lapack]: https://en.wikipedia.org/wiki/LAPACK
//! [openblas]: http://www.openblas.net
#![doc = include_str!("../README.md")]

#![no_std]
Loading