kryst 3.2.1

Krylov subspace and preconditioned iterative solvers for dense and sparse linear systems, with shared and distributed memory parallelism.
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Basic numeric traits and operations used throughout the crate.

pub mod blas;
pub mod bridge;
#[cfg(feature = "backend-faer")]
pub mod dense;
pub mod parallel;
pub mod parallel_cfg;
pub mod prelude;
pub mod scalar;

pub use parallel_cfg::{ParallelTune, parallel_tune, set_parallel_tune};
pub use scalar::{KrystScalar, R, S};