Skip to content

Commit

Permalink
revise comments
Browse files Browse the repository at this point in the history
  • Loading branch information
chtlp committed Mar 9, 2024
1 parent 603cbb2 commit b29db43
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions faiss/IndexHNSWfast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,7 @@ void IndexHNSWfast::search(
for (idx_t i0 = 0; i0 < n; i0 += check_period) {
idx_t i1 = std::min(i0 + check_period, n);

/// current we disable omp, until find other solution
/// https://git.moqi.ai/mqdb/search-index/-/issues/7#note_55488
/// Disable omp for more consistent results
//#pragma omp parallel reduction(+ : nreorder)
{
DistanceComputer* dis = storage_distance_computer(storage);
Expand Down

0 comments on commit b29db43

Please sign in to comment.