matten 0.12.0

A family car multidimensional array (tensor) library for small numerical trials / PoCs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Element-wise operators and broadcasting (RFC-006).
//!
//! Module layout (handoff PR-006-A):
//! - `broadcast` — shape computation and index mapping
//! - `tensor_ops` — binary `&Tensor op &Tensor` impls
//! - `scalar_ops` — scalar `&Tensor op f64` and `f64 op &Tensor` impls
//! - `unary_ops` — `Neg`

pub(crate) mod broadcast;
mod scalar_ops;
mod tensor_ops;
mod unary_ops;