(self, q)
| 371 | # return dists_cpp |
| 372 | |
| 373 | def dot_prods(self, q): |
| 374 | lut = _fit_pq_lut(q, centroids=self.centroids, |
| 375 | elemwise_dist_func=dists_elemwise_dot) |
| 376 | return self._dists(lut) |
| 377 | |
| 378 | |
| 379 | class Reductions: |
nothing calls this directly
no test coverage detected