Skip to content

Commit 0f18251

Browse files
generatedunixname89002005325676facebook-github-bot
generatedunixname89002005325676
authored andcommitted
Daily arc lint --take CLANGFORMAT
Reviewed By: bigfootjon Differential Revision: D49724184 fbshipit-source-id: dae2af01c245516e910801e11acda3fdd8bfaa54
1 parent cf90435 commit 0f18251

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

faiss/IndexAdditiveQuantizer.cpp

+6-1
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,12 @@ void ResidualCoarseQuantizer::search(
560560
}
561561
for (idx_t i0 = 0; i0 < n; i0 += bs) {
562562
idx_t i1 = std::min(n, i0 + bs);
563-
search(i1 - i0, x + i0 * d, k, distances + i0 * k, labels + i0 * k, params_in);
563+
search(i1 - i0,
564+
x + i0 * d,
565+
k,
566+
distances + i0 * k,
567+
labels + i0 * k,
568+
params_in);
564569
InterruptCallback::check();
565570
}
566571
return;

0 commit comments

Comments
 (0)