matten 0.6.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
13
14
15
//! **DEFERRED** — matrix × matrix multiplication.
//!
//! Run: cargo run --example 22_matrix_multiplication
//!
//! This example requires `matmul` which is defined in RFC-010 reductions/matmul and not yet
//! implemented. It will be completed when RFC-010 lands in a future milestone.
//!
//! Tracking: https://github.com/nabbisen/matten/issues (RFC-010)

fn main() {
    println!(
        "Example '22_matrix_multiplication' is deferred pending RFC-010 (reductions / matmul)."
    );
    println!("Check back after the next milestone — or open a GitHub issue to prioritise it.");
}