Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(benchmarks): increase benchmark matrix for arb_dependent_cost_values #2518

Closed
wants to merge 9 commits into from
Closed
20 changes: 10 additions & 10 deletions benches/benches/block_target_gas.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
use block_target_gas_set::{
alu::run_alu,
contract::run_contract,
crypto::run_crypto,
flow::run_flow,
// alu::run_alu,
// contract::run_contract,
// crypto::run_crypto,
// flow::run_flow,
memory::run_memory,
other::run_other,
// other::run_other,
};
use criterion::{
criterion_group,
Expand Down Expand Up @@ -456,17 +456,17 @@ fn run_with_service_with_extra_inputs(
fn block_target_gas(c: &mut Criterion) {
let mut group = c.benchmark_group("block target estimation");

run_alu(&mut group);
// run_alu(&mut group);

run_contract(&mut group);
// run_contract(&mut group);

run_crypto(&mut group);
// run_crypto(&mut group);

run_flow(&mut group);
// run_flow(&mut group);

run_memory(&mut group);

run_other(&mut group);
// run_other(&mut group);

group.finish();
}
Expand Down
Loading
Loading