nalgebra/nalgebra-lapack
Sébastien Crozet 48c8f6a505
Release v0.33.0 (#1417)
2024-06-23 15:28:37 +02:00
..
benches Fix compilation of benchmarks 2021-04-12 10:52:17 +02:00
src feat: use GAT to remove the scalar type T from the Allocator trait (#1397) 2024-06-12 11:16:06 +02:00
tests cargo fmt + tests 2022-10-30 17:22:08 +01:00
CHANGELOG.md Add nalgebra-lapack as a crate on this workspace. 2017-08-15 19:07:18 +02:00
Cargo.toml Release v0.33.0 (#1417) 2024-06-23 15:28:37 +02:00
LICENSE Fix and clarify license in crate metadata and add missing license files 2023-10-24 18:33:53 +02:00
Makefile Add nalgebra-lapack as a crate on this workspace. 2017-08-15 19:07:18 +02:00
README.md HTTPS All The Things (#608) 2019-08-27 22:05:28 +02:00

README.md

nalgebra-lapack Version Status Doc

Rust library for linear algebra using nalgebra and LAPACK.

Documentation

Documentation is available here.

License

MIT

Cargo features to select lapack provider

Like the lapack crate from which this behavior is inherited, nalgebra-lapack uses cargo features to select which lapack provider (or implementation) is used. Command line arguments to cargo are the easiest way to do this, and the best provider depends on your particular system. In some cases, the providers can be further tuned with environment variables.

Below are given examples of how to invoke cargo build on two different systems using two different providers. The --no-default-features --features "provider" arguments will be consistent for other cargo commands.

Ubuntu

As tested on Ubuntu 12.04, do this to build the lapack package against the system installation of netlib without LAPACKE (note the E) or CBLAS:

sudo apt-get install gfortran libblas3gf liblapack3gf
export CARGO_FEATURE_SYSTEM_NETLIB=1
export CARGO_FEATURE_EXCLUDE_LAPACKE=1
export CARGO_FEATURE_EXCLUDE_CBLAS=1

export CARGO_FEATURES="--no-default-features --features netlib"
cargo build ${CARGO_FEATURES}

macOS

On macOS, do this to use Apple's Accelerate framework:

export CARGO_FEATURES="--no-default-features --features accelerate"
cargo build ${CARGO_FEATURES}

Contributors

This integration of LAPACK on nalgebra was initiated by Andrew Straw. It then became officially supported and integrated to the main nalgebra repository.