Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Commit

Permalink
change main to run all
Browse files Browse the repository at this point in the history
  • Loading branch information
lanlou1554 committed May 1, 2024
1 parent a0674bd commit b48a9f8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ use std::path::PathBuf;
async fn main() {
// benchmark_sync().await;
// benchmark_parallel().await;
let trace = parse_trace(PathBuf::from("traces/trace_1m.csv")).unwrap();
run_trace(trace, &utils::setup_client_1).await;
let trace = parse_trace(PathBuf::from("traces/trace_100m.csv")).unwrap();
run_trace(trace, &utils::setup_client_1).await;
let trace = parse_trace(PathBuf::from("traces/trace_parallel.csv")).unwrap();
run_trace(trace, &utils::setup_client_1).await;
}

0 comments on commit b48a9f8

Please sign in to comment.