16 releases (breaking)

0.13.0 Oct 6, 2025
0.11.0 Feb 8, 2025
0.10.0 Jan 22, 2024
0.9.0 May 17, 2023
0.1.2 Nov 26, 2017

#557 in Math

Download history 2053/week @ 2025-11-20 1662/week @ 2025-11-27 1560/week @ 2025-12-04 1539/week @ 2025-12-11 1271/week @ 2025-12-18 670/week @ 2025-12-25 1095/week @ 2026-01-01 1729/week @ 2026-01-08 1301/week @ 2026-01-15 1392/week @ 2026-01-22 1477/week @ 2026-01-29 1315/week @ 2026-02-05 1566/week @ 2026-02-12 1614/week @ 2026-02-19 2000/week @ 2026-02-26 2516/week @ 2026-03-05

7,843 downloads per month
Used in 39 crates (18 directly)

Apache-2.0 OR MIT

18KB

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:

[dependencies]
lapack-src = { version = "0.13", features = ["accelerate"] }
lapack-src = { version = "0.13", features = ["intel-mkl-dynamic-parallel"] }
lapack-src = { version = "0.13", features = ["intel-mkl-dynamic-sequential"] }
lapack-src = { version = "0.13", features = ["intel-mkl-static-parallel"] }
lapack-src = { version = "0.13", features = ["intel-mkl-static-sequential"] }
lapack-src = { version = "0.13", features = ["netlib"] }
lapack-src = { version = "0.13", features = ["openblas"] }
lapack-src = { version = "0.13", 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.

Dependencies

~0–12MB
~136K SLoC