Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion faiss/gpu/impl/RaftIVFFlat.cu
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,8 @@ void RaftIVFFlat::copyInvertedListsFrom(const InvertedLists* ivf) {
}

// Update the pointers and the sizes
raft_knn_index.value().recompute_internal_state(raft_handle);
raft::neighbors::ivf_flat::helpers::recompute_internal_state(
raft_handle, &(raft_knn_index.value()));

for (size_t i = 0; i < nlist; ++i) {
size_t listSize = ivf->list_size(i);
Expand Down