Skip to content

Commit 9da99cb

Browse files
committed
Enable 128 bit multiplication (it is faster)
1 parent 8100b1c commit 9da99cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xorfilter/xor_fuse_filter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ inline uint32_t reduce(uint32_t hash, uint32_t n) {
3131
return (uint32_t) (((uint64_t) hash * n) >> 32);
3232
}
3333

34-
// #define H128
34+
#define H128
3535
const size_t segmentLengthBits = 13;
3636
const size_t segmentLength = 1 << segmentLengthBits;
3737

0 commit comments

Comments
 (0)