Skip to content

Commit 7449f3e

Browse files
committed
Blocked Bloom filter: bulk insert (faster only in the 100m case, and only about 10%)
1 parent 9bc380d commit 7449f3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

benchmarks/bulk-insert-and-query.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -889,9 +889,9 @@ int main(int argc, char * argv[]) {
889889
}
890890

891891
#ifdef __AVX2__
892-
if (algorithmId == 40 || algorithmId < 0) {
892+
if (algorithmId == 40 || algorithmId < 0 || (algos.find(40) != algos.end())) {
893893
auto cf = FilterBenchmark<SimdBlockFilterFixed<SimpleMixSplit>>(
894-
add_count, to_add, to_lookup, seed, true);
894+
add_count, to_add, distinct_add, to_lookup, distinct_lookup, intersectionsize, hasduplicates, mixed_sets, seed, true);
895895
cout << setw(NAME_WIDTH) << names[40] << cf << endl;
896896
}
897897
#endif

0 commit comments

Comments
 (0)