accelerate_src/
lib.rs

1
2
3
4
5
6
7
8
9
10
//! Source of [BLAS] and [LAPACK] via the [Accelerate] framework.
//!
//! The usage of the package is explained [here][usage].
//!
//! [accelerate]: https://developer.apple.com/documentation/accelerate
//! [blas]: https://en.wikipedia.org/wiki/BLAS
//! [lapack]: https://en.wikipedia.org/wiki/LAPACK
//! [usage]: https://blas-lapack-rs.github.io/usage

#![no_std]