//! Matmul-specific interpretation of the generic [CubeMapping] from `cubek-std`.
//!
//! The partitioned matmul interprets the `(x, y, z)` problem-space axes
//! as `(m, n, batch)`. GEMV variants use [cube_pos_to_matrix_batch] instead.
use *;
pub use ;
/// Reads the cube position as matmul tensor coordinates `(m, n, batch)`.
/// Reads the cube position as GEMV `(matrix_axis, batch)` coordinates.
///
/// GEMV is 2D in problem space (the matrix axis + batch). The routine builds
/// its [CubeCountPlan] with `y = 1`, so the meaningful matrix-axis lives in `x`.