4 releases

0.2.2 May 6, 2024
0.2.1 May 1, 2022
0.2.0 Nov 30, 2020
0.1.0 May 19, 2018

#270 in Science

Download history 1319/week @ 2024-10-05 1357/week @ 2024-10-12 1508/week @ 2024-10-19 1322/week @ 2024-10-26 1463/week @ 2024-11-02 1310/week @ 2024-11-09 1258/week @ 2024-11-16 1265/week @ 2024-11-23 1322/week @ 2024-11-30 1328/week @ 2024-12-07 958/week @ 2024-12-14 649/week @ 2024-12-21 575/week @ 2024-12-28 769/week @ 2025-01-04 826/week @ 2025-01-11 704/week @ 2025-01-18

2,970 downloads per month
Used in 8 crates (6 directly)

MIT/Apache

17MB
335K SLoC

C 307K SLoC // 0.2% comments FORTRAN Legacy 20K SLoC // 0.3% comments C++ 3.5K SLoC // 0.3% comments Shell 2K SLoC // 0.4% comments GNU Style Assembly 1.5K SLoC // 0.1% comments Python 615 SLoC // 0.4% comments Rust 160 SLoC // 0.0% comments

blis-src

This crate provides BLAS and/or CBLAS functions using BLIS.

Features:

  • cblas: build the CBLAS interface (enabled by default)
  • static: prefer static link (be very careful with this one on Apple platforms)
  • pthreads or openmp or serial: choose exactly one to specify the threading mode (pthreads by default)
  • system: do not compile BLIS and instead use a system-provided version (must be in system's default link path).

This package does not provides Rust declarations for BLAS or CBLAS, which are available in the blas-sys and cblas-sys crates. See the blas example and cblas example for usage.

Users simply seeking a fast BLAS are encouraged to use blas-sys with the following in Cargo.toml:

[dependencies]
blas-src = { version = "0.10", features = ["blis"] }

Dependencies