physics_in_parallel 3.0.3

High-performance infrastructure for numerical simulations in physics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*!
Core math foundations.
*/

pub mod io;
pub mod prelude;
pub mod scalar;
pub mod tensor;

// Canonical top-level exports.
pub use io::ndarray::NdarrayConvert;
pub use scalar::{Complex, Scalar, ScalarCastError, ScalarSerde};
pub use tensor::{
    Backend, Dense, RandType, RngKind, Sparse, Tensor, TensorError, TensorRandError,
    TensorRandFiller, TensorResult, TensorTrait,
};