Crate blas_src [] [src]

BLAS implementation of choice.

Note that this package does not contain any functionality other than compiling (if necessary) and linking to the chosen implementation. Bindings are available in blas-sys, and wrappers are available in blas.

Configuration

The following implementations are available:

  • accelerate, which is the one in the Accelerate framework (macOS only),
  • netlib, which is the reference one by Netlib, and
  • openblas, which is the one in OpenBLAS.

An implementation can be chosen as follows:

[dependencies]
blas-src = { version = "0.1", features = ["accelerate"] }
blas-src = { version = "0.1", features = ["netlib"] }
blas-src = { version = "0.1", features = ["openblas"] }