├── .gitignore ├── .gitmodules ├── .projectile ├── Makefile.am ├── MurmurHash3.cc ├── MurmurHash3.h ├── README.md ├── configure.ac ├── int_hash_bench.cc ├── khash.h ├── m4 ├── ac_prog_cc_c11.m4 ├── ax_cflags_warn_all.m4 ├── ax_compile_stdcxx.m4 ├── ax_compiler_vendor.m4 ├── ax_cxx_compile_stdcxx_11.m4 ├── ax_gcc_archflag.m4 └── ax_pthread.m4 ├── robin_only.c ├── short_key_insert_time.csv ├── short_key_insert_time.gnuplot ├── short_key_insert_time.png ├── short_key_lookup_time.csv ├── short_key_lookup_time.gnuplot ├── short_key_lookup_time.png ├── short_key_mem.csv ├── short_key_mem.gnuplot ├── short_key_mem.png └── str_hash_bench.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.projectile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/.projectile -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/Makefile.am -------------------------------------------------------------------------------- /MurmurHash3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/MurmurHash3.cc -------------------------------------------------------------------------------- /MurmurHash3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/MurmurHash3.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/README.md -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/configure.ac -------------------------------------------------------------------------------- /int_hash_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/int_hash_bench.cc -------------------------------------------------------------------------------- /khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/khash.h -------------------------------------------------------------------------------- /m4/ac_prog_cc_c11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/m4/ac_prog_cc_c11.m4 -------------------------------------------------------------------------------- /m4/ax_cflags_warn_all.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/m4/ax_cflags_warn_all.m4 -------------------------------------------------------------------------------- /m4/ax_compile_stdcxx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/m4/ax_compile_stdcxx.m4 -------------------------------------------------------------------------------- /m4/ax_compiler_vendor.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/m4/ax_compiler_vendor.m4 -------------------------------------------------------------------------------- /m4/ax_cxx_compile_stdcxx_11.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/m4/ax_cxx_compile_stdcxx_11.m4 -------------------------------------------------------------------------------- /m4/ax_gcc_archflag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/m4/ax_gcc_archflag.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /robin_only.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/robin_only.c -------------------------------------------------------------------------------- /short_key_insert_time.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/short_key_insert_time.csv -------------------------------------------------------------------------------- /short_key_insert_time.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/short_key_insert_time.gnuplot -------------------------------------------------------------------------------- /short_key_insert_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/short_key_insert_time.png -------------------------------------------------------------------------------- /short_key_lookup_time.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/short_key_lookup_time.csv -------------------------------------------------------------------------------- /short_key_lookup_time.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/short_key_lookup_time.gnuplot -------------------------------------------------------------------------------- /short_key_lookup_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/short_key_lookup_time.png -------------------------------------------------------------------------------- /short_key_mem.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/short_key_mem.csv -------------------------------------------------------------------------------- /short_key_mem.gnuplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/short_key_mem.gnuplot -------------------------------------------------------------------------------- /short_key_mem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/short_key_mem.png -------------------------------------------------------------------------------- /str_hash_bench.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dryman/hash_bench/HEAD/str_hash_bench.cc --------------------------------------------------------------------------------