Prepare the FP32 query for asymmetric distance computations. For SQ8 the query is used directly without rotation or normalization.
(&self, q: &[f32])
| 68 | /// |
| 69 | /// For SQ8 the query is used directly without rotation or normalization. |
| 70 | fn prepare_query(&self, q: &[f32]) -> Self::Query { |
| 71 | q.to_vec() |
| 72 | } |
| 73 | |
| 74 | /// SQ8 has no precomputed ADC table — returns `None`. |
| 75 | fn adc_lut(&self, _q: &Self::Query) -> Option<AdcLut> { |