Skip to content

Commit

Permalink
Daily arc lint --take CLANGFORMAT
Browse files Browse the repository at this point in the history
Reviewed By: bigfootjon

Differential Revision: D49724184

fbshipit-source-id: dae2af01c245516e910801e11acda3fdd8bfaa54
  • Loading branch information
generatedunixname89002005325676 authored and facebook-github-bot committed Sep 28, 2023
1 parent cf90435 commit 0f18251
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion faiss/IndexAdditiveQuantizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,12 @@ void ResidualCoarseQuantizer::search(
}
for (idx_t i0 = 0; i0 < n; i0 += bs) {
idx_t i1 = std::min(n, i0 + bs);
search(i1 - i0, x + i0 * d, k, distances + i0 * k, labels + i0 * k, params_in);
search(i1 - i0,
x + i0 * d,
k,
distances + i0 * k,
labels + i0 * k,
params_in);
InterruptCallback::check();
}
return;
Expand Down

0 comments on commit 0f18251

Please sign in to comment.