Skip to content

Commit c0b32d2

Browse files
mengdilinfacebook-github-bot
authored andcommitted
fix ARM64 SVE CI due to openblas version bump (#3777)
Summary: Pull Request resolved: #3777 openblas version is bumped from 0.3.27 -> 0.3.28 in the last 3 days. This caused the below test to fail. Confirmed with algoriddle bumping nprobe is okay to do Reviewed By: algoriddle Differential Revision: D61536541 fbshipit-source-id: 1e83f75011517ba7b856520f11526e72a00494a5
1 parent 924c24d commit c0b32d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_index_accuracy.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -633,14 +633,14 @@ def test_OIVFPQ(self):
633633
d = ev.d
634634
quantizer = faiss.IndexFlatL2(d)
635635
index = faiss.IndexIVFPQ(quantizer, d, ncentroids, M, 8)
636-
index.nprobe = 12
636+
index.nprobe = 20
637637

638638
res = ev.launch("IVFPQ", index)
639639
e_ivfpq = ev.evalres(res)
640640

641641
quantizer = faiss.IndexFlatL2(d)
642642
index_ivfpq = faiss.IndexIVFPQ(quantizer, d, ncentroids, M, 8)
643-
index_ivfpq.nprobe = 12
643+
index_ivfpq.nprobe = 20
644644
opq_matrix = faiss.OPQMatrix(d, M)
645645
opq_matrix.niter = 10
646646
index = faiss.IndexPreTransform(opq_matrix, index_ivfpq)

0 commit comments

Comments
 (0)