matmul 0.1.1

Fast matrix multiplication in Rust with AVX2/AVX-512 SIMD, built from scratch
Documentation
1
2
3
4
5
6
7
8
//! Basic matrix operations and naive implementations.
//!
//! These provide correctness baselines and utility functions used by
//! the optimized SIMD implementations.

pub mod naive_ijk;
pub mod naive_ikj;
pub mod transpose;