pub unsafe fn matmul_row_dispatch(
left_row: *const f32,
right: *const f32,
out_row: *mut f32,
k: usize,
n: usize,
)Expand description
Dispatch to the best available SIMD path for a single matmul output row.
ยงSafety
left_rowmust point to at leastkvalid f32 elements.rightmust point to at leastk * nvalid f32 elements (row-major B).out_rowmust point to at leastnvalid f32 elements.- The caller must ensure no aliasing between
out_rowand the input pointers.