Skip to content

Commit

Permalink
Remove unnecessary benchmark runs
Browse files Browse the repository at this point in the history
  • Loading branch information
pdimov committed Oct 17, 2024
1 parent d0d6229 commit 5929c6b
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 25 deletions.
8 changes: 0 additions & 8 deletions benchmark/average.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,6 @@ template<class R> void test( int N )
test_<R, boost::hash2::sha2_512_224>( N );
test_<R, boost::hash2::sha2_512_256>( N );
test_<R, boost::hash2::ripemd_160>( N );
test_<R, boost::hash2::hmac_md5_128>( N );
test_<R, boost::hash2::hmac_sha1_160>( N );
test_<R, boost::hash2::hmac_sha2_256>( N );
test_<R, boost::hash2::hmac_sha2_224>( N );
test_<R, boost::hash2::hmac_sha2_512>( N );
test_<R, boost::hash2::hmac_sha2_384>( N );
test_<R, boost::hash2::hmac_sha2_512_224>( N );
test_<R, boost::hash2::hmac_sha2_512_256>( N );

puts( "" );
}
Expand Down
8 changes: 0 additions & 8 deletions benchmark/buffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,6 @@ void test( int N, int M )
test_<boost::hash2::sha2_512_224>( data, N, M );
test_<boost::hash2::sha2_512_256>( data, N, M );
test_<boost::hash2::ripemd_160>( data, N, M );
test_<boost::hash2::hmac_md5_128>( data, N, M );
test_<boost::hash2::hmac_sha1_160>( data, N, M );
test_<boost::hash2::hmac_sha2_256>( data, N, M );
test_<boost::hash2::hmac_sha2_224>( data, N, M );
test_<boost::hash2::hmac_sha2_512>( data, N, M );
test_<boost::hash2::hmac_sha2_384>( data, N, M );
test_<boost::hash2::hmac_sha2_512_224>( data, N, M );
test_<boost::hash2::hmac_sha2_512_256>( data, N, M );

puts( "--" );
}
Expand Down
1 change: 0 additions & 1 deletion benchmark/keys.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,6 @@ int main()
test2<boost::hash2::xxhash_64>( N, v );
test2<boost::hash2::siphash_32>( N, v );
test2<boost::hash2::siphash_64>( N, v );
test2<boost::hash2::ripemd_160>( N, v );

std::puts( "" );
}
8 changes: 0 additions & 8 deletions benchmark/unordered.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,14 +155,6 @@ int main()
test2<K, boost::hash2::siphash_32>( N, v );
test2<K, boost::hash2::siphash_64>( N, v );
test2<K, boost::hash2::md5_128>( N, v );
test2<K, boost::hash2::sha1_160>( N, v );
test2<K, boost::hash2::sha2_256>( N, v );
test2<K, boost::hash2::sha2_224>( N, v );
test2<K, boost::hash2::sha2_512>( N, v );
test2<K, boost::hash2::sha2_384>( N, v );
test2<K, boost::hash2::sha2_512_224>( N, v );
test2<K, boost::hash2::sha2_512_256>( N, v );
test2<K, boost::hash2::ripemd_160>( N, v );

std::puts( "" );
}

0 comments on commit 5929c6b

Please sign in to comment.