nalgebra/nalgebra-lapack
Sébastien Crozet 02767fa894 Add nalgebra-lapack as a crate on this workspace. 2017-08-15 19:07:18 +02:00
..
benches Add nalgebra-lapack as a crate on this workspace. 2017-08-15 19:07:18 +02:00
src Add nalgebra-lapack as a crate on this workspace. 2017-08-15 19:07:18 +02:00
tests Add nalgebra-lapack as a crate on this workspace. 2017-08-15 19:07:18 +02:00
CHANGELOG.md Add nalgebra-lapack as a crate on this workspace. 2017-08-15 19:07:18 +02:00
Cargo.toml Add nalgebra-lapack as a crate on this workspace. 2017-08-15 19:07:18 +02:00
LICENSE.txt Add nalgebra-lapack as a crate on this workspace. 2017-08-15 19:07:18 +02:00
Makefile Add nalgebra-lapack as a crate on this workspace. 2017-08-15 19:07:18 +02:00
README.md Add nalgebra-lapack as a crate on this workspace. 2017-08-15 19:07:18 +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}

Mac OS X

On Mac OS X, do this to use Apple's Accelerate framework:

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