forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge bitcoin-core/secp256k1#991: Merge all "external" benchmarks int…
…o a single bench binary af6abcb Make bench support selecting which benchmarks to run (Pieter Wuille) 9f56bdf Merge bench_schnorrsig into bench (Pieter Wuille) 3208557 Merge bench_recover into bench (Pieter Wuille) 855e18d Merge bench_ecdh into bench (Pieter Wuille) 2a7be67 Combine bench_sign and bench_verify into single bench (Pieter Wuille) Pull request description: This combines `bench_verify`, `bench_sign`, `bench_ecdh`, `bench_recovery`, and `bench_schnorrsig` into a single `bench` binary. I don't think there is a good reason to have this many binaries, and it complicates build config and CI. ACKs for top commit: real-or-random: ACK af6abcb diff looks good, command line options work, valgrind is happy siv2r: tACK af6abcb, the command-line options work as expected on my ubuntu machine. The diff looks good. Tree-SHA512: 39c099b508c70136eaac8a429591b4250a8c22e423fa922d83928ea9273d8f2c1136317427563b28f249c02cf83d1c73ea787c6d26aa88545236241641965705
- Loading branch information
Showing
11 changed files
with
108 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,4 @@ | ||
include_HEADERS += include/secp256k1_ecdh.h | ||
noinst_HEADERS += src/modules/ecdh/main_impl.h | ||
noinst_HEADERS += src/modules/ecdh/tests_impl.h | ||
if USE_BENCHMARK | ||
noinst_PROGRAMS += bench_ecdh | ||
bench_ecdh_SOURCES = src/bench_ecdh.c | ||
bench_ecdh_LDADD = libsecp256k1.la $(SECP_LIBS) $(COMMON_LIB) | ||
endif | ||
noinst_HEADERS += src/modules/ecdh/bench_impl.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters