Skip to content

Commit

Permalink
Merge branch 'avx512-sr' of https://github.com/mulugetam/faiss into a…
Browse files Browse the repository at this point in the history
…vx512-sr
  • Loading branch information
mulugetam committed Nov 12, 2024
2 parents 7a46de7 + 67e6291 commit 7c48043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion faiss/utils/distances_simd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3759,7 +3759,7 @@ void fvec_add(size_t d, const float* a, float b, float* c) {
size_t i;
simd8float32 bv(b);
for (i = 0; i + 7 < d; i += 8) {
simd8float32 ci, ai, bi;
simd8float32 ci, ai;
ai.loadu(a + i);
ci = ai + bv;
ci.storeu(c + i);
Expand Down

0 comments on commit 7c48043

Please sign in to comment.