Skip to content

Commit

Permalink
Add mulxp3_32
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Nov 8, 2024
1 parent d16d981 commit 17357c3
Show file tree
Hide file tree
Showing 4 changed files with 209 additions and 205 deletions.
1 change: 1 addition & 0 deletions benchmark/buffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ void test( int N, int M )
test_<fnv1a_64>( data, N, M );
test_<xxhash_32>( data, N, M );
test_<xxhash_64>( data, N, M );
test_<mulxp3_32>( data, N, M );
test_<mulxp3_64>( data, N, M );
test_<siphash_32>( data, N, M );
test_<siphash_64>( data, N, M );
Expand Down
1 change: 1 addition & 0 deletions benchmark/keys.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ int main()
test2<fnv1a_64>( N, v );
test2<xxhash_32>( N, v );
test2<xxhash_64>( N, v );
test2<mulxp3_32>( N, v );
test2<mulxp3_64>( N, v );
test2<siphash_32>( N, v );
test2<siphash_64>( N, v );
Expand Down
1 change: 1 addition & 0 deletions benchmark/unordered.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ int main()
test2<K, boost::hash2::fnv1a_64>( N, v );
test2<K, boost::hash2::xxhash_32>( N, v );
test2<K, boost::hash2::xxhash_64>( N, v );
test2<K, boost::hash2::mulxp3_32>( N, v );
test2<K, boost::hash2::mulxp3_64>( N, v );
test2<K, boost::hash2::siphash_32>( N, v );
test2<K, boost::hash2::siphash_64>( N, v );
Expand Down
Loading

0 comments on commit 17357c3

Please sign in to comment.