Skip to content

Commit

Permalink
make the benchmark names consistent again
Browse files Browse the repository at this point in the history
  • Loading branch information
ljeub-pometry committed Jul 15, 2024
1 parent d8752c3 commit a363c77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion raphtory-benchmark/benches/base.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
4 changes: 2 additions & 2 deletions raphtory-benchmark/benches/common/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down Expand Up @@ -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");
Expand Down

0 comments on commit a363c77

Please sign in to comment.