numr 0.5.1

High-performance numerical computing with multi-backend GPU acceleration (CPU/CUDA/WebGPU)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Linear algebra algorithm trait definitions
//!
//! These traits define the contract that all backends must implement
//! to ensure numerical parity across CPU, CUDA, WebGPU, and other backends.

pub mod linear_algebra;
pub mod matrix_functions;
pub mod tensor_decompose;

pub use linear_algebra::LinearAlgebraAlgorithms;
pub use matrix_functions::MatrixFunctionsAlgorithms;
pub use tensor_decompose::TensorDecomposeAlgorithms;