ndarray-linalg icon indicating copy to clipboard operation
ndarray-linalg copied to clipboard

Linear algebra package for rust-ndarray using LAPACK binding

Results 95 ndarray-linalg issues
Sort by recently updated
recently updated
newest added

I use `ndarray-linalg` with the feature `netlib-system`. When compiling I get ``` = note: /usr/bin/ld: cannot find -lcblas: No such file or directory collect2: error: ld returned 1 exit status...

I cannot get any of the backends to work under Windows. For example using this configuration from the docs: ``` ndarray = { version = "0.15", features = ["blas"] }...

Related: #307 # MWE: ## `Cargo.toml`: ``` [package] name = "EighBug" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] # ndarray ndarray...

The Lapack trait bound is not necessary for the implementation of norm: https://github.com/rust-ndarray/ndarray-linalg/blob/3e13736c740c2959745bfdf20aa69a4cde988d3c/ndarray-linalg/src/norm.rs#L27

Not sure if it is the correct solution, but it fixes build in #365

Dear ndarray-linalg team, I am wondering whether the backend can be apple's accelerate framework. How can I setup and compile so that I can use the accelerate framework, which is...

As referenced [here][1] on ARM architectures (e.g. Raspberry Pi) the cLibs uses u8 as pointer type instead of i8. This is a problem in [flags.rs][2], where the implementations of `as_ptr()`...

Hello Team, It seems openblas on MacOS can be replaced by the system default blas implementation called veclib, R language support it as the backend instead of default openblas et.al...

Consider adding the keywords #linear and #linear-algebra to cargo.toml. That would make the library more discoverable on https://crates.io. Here are crates.io pages for comparison. https://crates.io/crates/ndarray-linalg https://crates.io/crates/rulinalg https://crates.io/crates/nalgebra https://crates.io/crates/lapack https://crates.io/crates/blas

Updated ndarray-linalg/cargo.toml, lax/cargo.toml to match intel-mkl-src crate features as well as lax/src/lib.rs to accept the new features. Enables intel-mkl mutithreading and ilp64 support.