forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge bitcoin#16267: bench: Benchmark blockToJSON
91509ff bench: Benchmark blockToJSON (Kirill Fomichev) Pull request description: Related: - "getblock performance issue on verbosity" bitcoin#15925 - "refactor: Avoid UniValue copy constructor" bitcoin#15974 ACKs for top commit: laanwj: ACK 91509ff Tree-SHA512: e70b12cb31921c7527bde334f52f39776da698b6bbdb196079a8b68478c67585a5bd7bed7403f65166bd604f7ed60778c53dc064d743bb8368318a1283d1073e
- Loading branch information
Showing
3 changed files
with
35 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright (c) 2016-2019 The Bitcoin Core developers | ||
// Distributed under the MIT software license, see the accompanying | ||
// file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
#include <bench/bench.h> | ||
#include <bench/data.h> | ||
|
||
#include <validation.h> | ||
#include <streams.h> | ||
#include <consensus/validation.h> | ||
#include <rpc/blockchain.h> | ||
|
||
#include <univalue.h> | ||
|
||
static void BlockToJsonVerbose(benchmark::State& state) { | ||
CDataStream stream(benchmark::data::block413567, SER_NETWORK, PROTOCOL_VERSION); | ||
char a = '\0'; | ||
stream.write(&a, 1); // Prevent compaction | ||
|
||
CBlock block; | ||
stream >> block; | ||
|
||
CBlockIndex blockindex; | ||
const uint256 blockHash = block.GetHash(); | ||
blockindex.phashBlock = &blockHash; | ||
blockindex.nBits = 403014710; | ||
|
||
while (state.KeepRunning()) { | ||
(void)blockToJSON(block, &blockindex, &blockindex, /*verbose*/ true); | ||
} | ||
} | ||
|
||
BENCHMARK(BlockToJsonVerbose, 10); |