Skip to content

Commit

Permalink
Copy paste failure corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
borrrden committed Feb 2, 2024
1 parent bf10a39 commit c6506e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions faiss/impl/LocalSearchQuantizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -629,8 +629,8 @@ void LocalSearchQuantizer::icm_encode_step(
size_t binary_idx = (other_m + 1) * M * K * K +
m * K * K + code2 * K + code;
_mm_prefetch(
+ (const char*)(binaries + binary_idx),
+ _MM_HINT_T0);
(const char*)(binaries + binary_idx),
_MM_HINT_T0);
}
}
#endif
Expand Down

0 comments on commit c6506e4

Please sign in to comment.