项目作者: blas-lapack-rs

项目描述 :
LAPACK source of choice
高级语言: Rust
项目地址: git://github.com/blas-lapack-rs/lapack-src.git
创建时间: 2017-10-29T08:00:41Z
项目社区:https://github.com/blas-lapack-rs/lapack-src

开源协议:Other

下载


lapack-src Package Documentation Build

The packages provides a LAPACK source of choice.

Architecture

Configuration

The following implementations are available:

  • accelerate, which is the one in the Accelerate framework (macOS only),
  • intel-mkl, which is the one in Intel MKL,
  • netlib, which is the reference one by Netlib,
  • openblas, which is the one in OpenBLAS, and
  • r, which is the one in R.

An implementation can be chosen as follows:

  1. [dependencies]
  2. lapack-src = { version = "0.11", features = ["accelerate"] }
  3. lapack-src = { version = "0.11", features = ["intel-mkl"] }
  4. lapack-src = { version = "0.11", features = ["netlib"] }
  5. lapack-src = { version = "0.11", features = ["openblas"] }
  6. lapack-src = { version = "0.11", features = ["r"] }

Contribution

Your contribution is highly appreciated. Do not hesitate to open an issue or a
pull request. Note that any contribution submitted for inclusion in the project
will be licensed according to the terms given in LICENSE.md.