pub fn quantized_dot_product_simd(a: &[u8], b: &[u8]) -> u32Expand description
Compute dot product between two quantized (u8) vectors using SIMD
Returns u32 to avoid overflow (max value = 255255len). For normalized comparison, you may need to convert to f32 afterward.