4 个版本
0.2.2 | 2024 年 5 月 6 日 |
---|---|
0.2.1 | 2022 年 5 月 1 日 |
0.2.0 | 2020 年 11 月 30 日 |
0.1.0 | 2018 年 5 月 19 日 |
#103 in 科学
2,438 每月下载量
在 9 个 crates 中使用 (6 个直接使用)
17MB
335K SLoC
blis-src
此包提供使用 BLIS 的 BLAS 和/或 CBLAS 函数。
特性
cblas
: 构建CBLAS接口(默认启用)static
: 优先静态链接(在 Apple 平台上使用时请格外小心)pthreads
或openmp
或serial
: 选择一个以指定线程模式(默认为pthreads
)system
: 不编译 BLIS,而是使用系统提供的版本(必须在系统默认链接路径中)。
此包不提供 Rust 声明,BLAS 或 CBLAS 的声明在 blas-sys
和 cblas-sys
软件包中可用。请参阅 BLAS 示例 和 CBLAS 示例 以了解使用方法。
寻求快速 BLAS 的用户鼓励使用 blas-sys
并在 Cargo.toml
中添加以下内容
[dependencies]
blas-src = { version = "0.10", features = ["blis"] }