Crates.io | linfa-linalg |
lib.rs | linfa-linalg |
version | 0.2.0 |
source | src |
created_at | 2022-06-05 21:46:42.179983 |
updated_at | 2024-08-29 02:29:34.837553 |
description | Pure-Rust implementation of linear algebra routines for ndarray |
homepage | |
repository | https://github.com/rust-ml/linfa-linalg |
max_upload_size | |
id | 600354 |
size | 164,312 |
Provides pure-Rust implementations of linear algebra routines for ndarray
without depending on external LAPACK/BLAS libraries.
If this crate is being used as a BLAS-less replacement for ndarray-linalg
, make sure to remove ndarray-linalg
from the entire dependency tree of your crate. This is because ndarray-linalg
, even as a transitive dependency, forces ndarray
to be built with the blas
feature, which forces all matrix multiplications to rely on a BLAS backend. This leads to linker errors if no BLAS backend is specified.
Dual-licensed to be compatible with the Rust project.
Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0 or the MIT license http://opensource.org/licenses/MIT, at your option. This file may not be copied, modified, or distributed except according to those terms.