Skip to content

Commit 2bc6cfb

Browse files
committed
Bugfix: SimdBlockFilter with 2^n size was used instead of variable size
1 parent dd28111 commit 2bc6cfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/bulk-insert-and-query.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1242,7 +1242,7 @@ int main(int argc, char * argv[]) {
12421242
#ifdef __AVX2__
12431243
a = 51;
12441244
if (algorithmId == a || algorithmId < 0 || (algos.find(a) != algos.end())) {
1245-
auto cf = FilterBenchmark<SimdBlockFilter<SimpleMixSplit>>(
1245+
auto cf = FilterBenchmark<SimdBlockFilterFixed<SimpleMixSplit>>(
12461246
add_count, to_add, distinct_add, to_lookup, distinct_lookup, intersectionsize, hasduplicates, mixed_sets, seed);
12471247
cout << setw(NAME_WIDTH) << names[a] << cf << endl;
12481248
}

0 commit comments

Comments
 (0)