File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -77,11 +77,14 @@ The shell script `benchmark/benchmark.sh` runs the benchmark 3 times for the mos
7777
7878## Where is your code?
7979
80- The filter implementations are in ` src ` , most are single header files and depend on ` src/hashutil.h ` :
80+ The filter implementations are in ` src/<type>/ ` . Most implementations depend on ` src/hashutil.h ` . Examples :
8181
82- * src/bloom.h
83- * src/xorfilter.h
82+ * src/bloom/bloom .h
83+ * src/xorfilter/xorfilter .h
8484
8585## Credit
8686
8787The cuckoo filter and the benchmark are derived from https://github.com/efficient/cuckoofilter by Bin Fan et al.
88+ The SIMD blocked Bloom filter is from https://github.com/apache/impala (via the cuckoo filter).
89+ The Morton filter is from https://github.com/AMDComputeLibraries/morton_filter .
90+ The Counting Quotient Filter (CQF) is from https://github.com/splatlab/cqf .
You can’t perform that action at this time.
0 commit comments