Skip to content

Commit

Permalink
fix: make EVM interpreter reports concise again
Browse files Browse the repository at this point in the history
  • Loading branch information
hedgar2017 committed Jan 30, 2025
1 parent 4ac605d commit b202ec9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion benchmark_analyzer/src/analysis/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@ pub fn compare<'a>(
let results: Vec<(Group<'_>, Results<'_>)> = groups
.into_iter()
.map(|(group_name, reference_tests, candidate_tests)| {
let ratios = if is_evm_interpreter_cycles_tests_group(&group_name) {
let ratios = if is_evm_interpreter_cycles_tests_group(&group_name)
&& group_name.codegen().as_deref() == Some("Y")
{
Some((
opcode_cost_ratios(&reference_tests),
opcode_cost_ratios(&candidate_tests),
Expand Down

0 comments on commit b202ec9

Please sign in to comment.