numrs/llo/
matmul.rs

1/// MatMul LLO placeholder. In the future this will include block sizes and
2/// tiling information and backend-specific heuristics.
3
4use serde::{Serialize, Deserialize};
5
6#[derive(Debug, Clone, Serialize, Deserialize)]
7pub struct MatMul {
8    pub a_rows: usize,
9    pub a_cols: usize,
10    pub b_cols: usize,
11}