Skip to content

Commit a59ac0b

Browse files
Update README.md
1 parent 0990e51 commit a59ac0b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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

8787
The 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.

0 commit comments

Comments
 (0)