Available on
docsrs only.Expand description
Crate Feature Flags
The following crate feature flags are available. They are configured in your
Cargo.toml where the dependency on ndarray is defined.
§std
- Rust standard library (enabled by default)
- This crate can be used without the standard library by disabling the
default
stdfeature. To do so, usedefault-features = falsein yourCargo.toml. - The
geomspacelinspacelogspacerangestdvarvar_axisandstd_axismethods are only available whenstdis enabled.
§serde
- Enables serialization support for serde 1.x
§rayon
§approx
- Enables implementations of traits of the
approxcrate.
§blas
- Enable transparent BLAS support for matrix multiplication.
Uses
blas-srcfor pluggable backend, which needs to be configured separately (see the README).
§matrixmultiply-threading
- Enable the
threadingfeature in the matrixmultiply package