From a363c77dad08127415934acb14ada1a68dbd7e3d Mon Sep 17 00:00:00 2001 From: Lucas Jeub Date: Mon, 15 Jul 2024 15:38:08 +0200 Subject: [PATCH] make the benchmark names consistent again --- raphtory-benchmark/benches/base.rs | 2 +- raphtory-benchmark/benches/common/mod.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/raphtory-benchmark/benches/base.rs b/raphtory-benchmark/benches/base.rs index 94badb81e7..c0562ce7f6 100644 --- a/raphtory-benchmark/benches/base.rs +++ b/raphtory-benchmark/benches/base.rs @@ -43,7 +43,7 @@ pub fn base(c: &mut Criterion) { } } - run_graph_ops_benches(c, "lotr", graph, layered_graph) + run_graph_ops_benches(c, "lotr_graph", graph, layered_graph) } criterion_group!(benches, base); diff --git a/raphtory-benchmark/benches/common/mod.rs b/raphtory-benchmark/benches/common/mod.rs index 0c98d4045b..6444291678 100644 --- a/raphtory-benchmark/benches/common/mod.rs +++ b/raphtory-benchmark/benches/common/mod.rs @@ -472,7 +472,7 @@ pub fn run_graph_ops_benches( bench_materialise(&format!("{graph_name}_materialise"), c, make_graph); // graph windowed - let group_name = format!("{graph_name}_graph_window_10"); + let group_name = format!("{graph_name}_window_10"); let mut graph_window_group_10 = c.benchmark_group(group_name); let latest = graph.latest_time().expect("non-empty graph"); let earliest = graph.earliest_time().expect("non-empty graph"); @@ -513,7 +513,7 @@ pub fn run_graph_ops_benches( // layered graph windowed let graph = layered_graph; - let group_name = format!("{graph_name}_graph_window_50_layered"); + let group_name = format!("{graph_name}_window_50_layered"); let mut graph_window_layered_group_50 = c.benchmark_group(group_name); let latest = graph.latest_time().expect("non-empty graph"); let earliest = graph.earliest_time().expect("non-empty graph");