-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #22 from Butkoin/spork6
merged for new butk version
- Loading branch information
Showing
57 changed files
with
2,016 additions
and
1,080 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// Copyright (c) 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 <utiltime.h> | ||
|
||
static void BenchTimeDeprecated(benchmark::State& state) | ||
{ | ||
while (state.KeepRunning()) { | ||
(void)GetTime(); | ||
} | ||
} | ||
|
||
static void BenchTimeMock(benchmark::State& state) | ||
{ | ||
SetMockTime(111); | ||
while (state.KeepRunning()) { | ||
(void)GetTime<std::chrono::seconds>(); | ||
} | ||
SetMockTime(0); | ||
} | ||
|
||
static void BenchTimeMillis(benchmark::State& state) | ||
{ | ||
while (state.KeepRunning()) { | ||
(void)GetTime<std::chrono::milliseconds>(); | ||
} | ||
} | ||
|
||
static void BenchTimeMillisSys(benchmark::State& state) | ||
{ | ||
while (state.KeepRunning()) { | ||
(void)GetTimeMillis(); | ||
} | ||
} | ||
|
||
BENCHMARK(BenchTimeDeprecated/*, 100000000*/); | ||
BENCHMARK(BenchTimeMillis/*, 6000000*/); | ||
BENCHMARK(BenchTimeMillisSys/*, 6000000*/); | ||
BENCHMARK(BenchTimeMock/*, 300000000*/); |
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
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
Oops, something went wrong.