Skip to content

A bucketized cuckoo hash table implementation in C++ with support for SIMD and batched lookups.

Notifications You must be signed in to change notification settings

ff-zhang/cuckoo-table

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cuckoo-table

A bucketized cuckoo hash table implementation in C++ with support for SIMD (aarch64) and batched lookups.

Setup

This only supports aarch64 machines for now.

Huge pages should be enabled with the following command when running the test:

echo 2048 | sudo tee /proc/sys/vm/nr_hugepages

Run Test

mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
cmake --build . --config Release

About

A bucketized cuckoo hash table implementation in C++ with support for SIMD and batched lookups.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 93.7%
  • CMake 6.3%