quantized_dot_product_simd

Function quantized_dot_product_simd 

Source
pub fn quantized_dot_product_simd(a: &[u8], b: &[u8]) -> u32
Expand 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.