diff --git a/faiss/IndexFastScan.cpp b/faiss/IndexFastScan.cpp index 529465da3e..36ebafe931 100644 --- a/faiss/IndexFastScan.cpp +++ b/faiss/IndexFastScan.cpp @@ -549,6 +549,22 @@ void IndexFastScan::search_implem_14( } } +template void IndexFastScan::search_dispatch_implem( + idx_t n, + const float* x, + idx_t k, + float* distances, + idx_t* labels, + const NormTableScaler* scaler) const; + +template void IndexFastScan::search_dispatch_implem( + idx_t n, + const float* x, + idx_t k, + float* distances, + idx_t* labels, + const NormTableScaler* scaler) const; + void IndexFastScan::reconstruct(idx_t key, float* recons) const { std::vector code(code_size, 0); BitstringWriter bsw(code.data(), code_size);