Skip to content

Commit

Permalink
Fix output bench
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarx committed Nov 18, 2023
1 parent 9aa7372 commit d9466fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nemo-benches/benches/output.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ pub fn benchmark_output(c: &mut Criterion) {

let physical_strings = strings
.iter()
.map(|s| PhysicalString::from(format!("STRING:{s}")))
.map(|s| PhysicalString::from(format!("ST:{s}")))
.collect::<Vec<_>>();
let physical_constants = strings
.iter()
.map(|s| PhysicalString::from(format!("CONSTANT:{s}")))
.map(|s| PhysicalString::from(format!("CO:{s}")))
.collect::<Vec<_>>();

let mut physical_output = c.benchmark_group("output_physical_values");
Expand Down

0 comments on commit d9466fe

Please sign in to comment.