blis-src

Crates.ioblis-src
lib.rsblis-src
version0.2.2
sourcesrc
created_at2018-05-19 16:04:43.797617
updated_at2024-05-06 20:47:02.65693
descriptionRust native linking for BLIS library
homepage
repositoryhttps://github.com/blas-lapack-rs/blis-src
max_upload_size
id66185
size22,358,385
Jed Brown (jedbrown)

documentation

README

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"] }
Commit count: 49

cargo fmt