mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-23 22:56:54 +01:00
Update the lightning graph snapshot used in benchmarks
The previous copy was more than one and a half years old, the lightning network has changed a lot since! As of this commit, performance on my Xeon W-10885M with a SK hynix Gold P31 storing a BTRFS volume is as follows: ``` test ln::channelmanager::bench::bench_sends ... bench: 5,896,492 ns/iter (+/- 512,421) test routing::gossip::benches::read_network_graph ... bench: 1,645,740,604 ns/iter (+/- 47,611,514) test routing::gossip::benches::write_network_graph ... bench: 234,870,775 ns/iter (+/- 8,301,775) test routing::router::benches::generate_mpp_routes_with_probabilistic_scorer ... bench: 166,155,032 ns/iter (+/- 30,206,162) test routing::router::benches::generate_mpp_routes_with_zero_penalty_scorer ... bench: 136,843,661 ns/iter (+/- 67,111,218) test routing::router::benches::generate_routes_with_probabilistic_scorer ... bench: 52,954,598 ns/iter (+/- 11,360,547) test routing::router::benches::generate_routes_with_zero_penalty_scorer ... bench: 37,598,126 ns/iter (+/- 17,262,519) test bench::bench_sends ... bench: 37,760,922 ns/iter (+/- 5,179,123) test bench::bench_reading_full_graph_from_file ... bench: 25,615 ns/iter (+/- 1,149) ```
This commit is contained in:
parent
153b048332
commit
608c8adfd5
2 changed files with 10 additions and 10 deletions
12
.github/workflows/build.yml
vendored
12
.github/workflows/build.yml
vendored
|
@ -242,19 +242,19 @@ jobs:
|
|||
id: cache-graph
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: lightning/net_graph-2021-05-31.bin
|
||||
key: ldk-net_graph-v0.0.15-2021-05-31.bin
|
||||
path: lightning/net_graph-2023-01-18.bin
|
||||
key: ldk-net_graph-v0.0.113-2023-01-18.bin
|
||||
- name: Fetch routing graph snapshot
|
||||
if: steps.cache-graph.outputs.cache-hit != 'true'
|
||||
run: |
|
||||
curl --verbose -L -o lightning/net_graph-2021-05-31.bin https://bitcoin.ninja/ldk-net_graph-v0.0.15-2021-05-31.bin
|
||||
echo "Sha sum: $(sha256sum lightning/net_graph-2021-05-31.bin | awk '{ print $1 }')"
|
||||
if [ "$(sha256sum lightning/net_graph-2021-05-31.bin | awk '{ print $1 }')" != "${EXPECTED_ROUTING_GRAPH_SNAPSHOT_SHASUM}" ]; then
|
||||
curl --verbose -L -o lightning/net_graph-2023-01-18.bin https://bitcoin.ninja/ldk-net_graph-v0.0.113-2023-01-18.bin
|
||||
echo "Sha sum: $(sha256sum lightning/net_graph-2023-01-18.bin | awk '{ print $1 }')"
|
||||
if [ "$(sha256sum lightning/net_graph-2023-01-18.bin | awk '{ print $1 }')" != "${EXPECTED_ROUTING_GRAPH_SNAPSHOT_SHASUM}" ]; then
|
||||
echo "Bad hash"
|
||||
exit 1
|
||||
fi
|
||||
env:
|
||||
EXPECTED_ROUTING_GRAPH_SNAPSHOT_SHASUM: 05a5361278f68ee2afd086cc04a1f927a63924be451f3221d380533acfacc303
|
||||
EXPECTED_ROUTING_GRAPH_SNAPSHOT_SHASUM: da6066f2bddcddbe7d8a6debbd53545697137b310bbb8c4911bc8c81fc5ff48c
|
||||
- name: Fetch rapid graph sync reference input
|
||||
run: |
|
||||
curl --verbose -L -o lightning-rapid-gossip-sync/res/full_graph.lngossip https://bitcoin.ninja/ldk-compressed_graph-285cb27df79-2022-07-21.bin
|
||||
|
|
|
@ -5639,8 +5639,8 @@ pub(crate) mod bench_utils {
|
|||
use std::fs::File;
|
||||
/// Tries to open a network graph file, or panics with a URL to fetch it.
|
||||
pub(crate) fn get_route_file() -> Result<std::fs::File, &'static str> {
|
||||
let res = File::open("net_graph-2021-05-31.bin") // By default we're run in RL/lightning
|
||||
.or_else(|_| File::open("lightning/net_graph-2021-05-31.bin")) // We may be run manually in RL/
|
||||
let res = File::open("net_graph-2023-01-18.bin") // By default we're run in RL/lightning
|
||||
.or_else(|_| File::open("lightning/net_graph-2023-01-18.bin")) // We may be run manually in RL/
|
||||
.or_else(|_| { // Fall back to guessing based on the binary location
|
||||
// path is likely something like .../rust-lightning/target/debug/deps/lightning-...
|
||||
let mut path = std::env::current_exe().unwrap();
|
||||
|
@ -5649,11 +5649,11 @@ pub(crate) mod bench_utils {
|
|||
path.pop(); // debug
|
||||
path.pop(); // target
|
||||
path.push("lightning");
|
||||
path.push("net_graph-2021-05-31.bin");
|
||||
path.push("net_graph-2023-01-18.bin");
|
||||
eprintln!("{}", path.to_str().unwrap());
|
||||
File::open(path)
|
||||
})
|
||||
.map_err(|_| "Please fetch https://bitcoin.ninja/ldk-net_graph-v0.0.15-2021-05-31.bin and place it at lightning/net_graph-2021-05-31.bin");
|
||||
.map_err(|_| "Please fetch https://bitcoin.ninja/ldk-net_graph-v0.0.113-2023-01-18.bin and place it at lightning/net_graph-2023-01-18.bin");
|
||||
#[cfg(require_route_graph_test)]
|
||||
return Ok(res.unwrap());
|
||||
#[cfg(not(require_route_graph_test))]
|
||||
|
|
Loading…
Add table
Reference in a new issue