Skip to content

Commit

Permalink
Increases number of operations
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoximenes committed Dec 20, 2024
1 parent 0ae7046 commit cc8ba64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arbitrator/tools/stylus_benchmark/src/scenario.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ fn write_wat_end(
}

fn generate_add_i32_wat() -> Vec<u8> {
let number_of_loop_iterations = 10_000;
let number_of_loop_iterations = 200_000;
let number_of_ops_per_loop_iteration = 2000;

let mut wat = Vec::new();
Expand All @@ -95,7 +95,7 @@ fn generate_add_i32_wat() -> Vec<u8> {
}

fn generate_xor_i32_wat() -> Vec<u8> {
let number_of_loop_iterations = 10_000;
let number_of_loop_iterations = 200_000;
let number_of_ops_per_loop_iteration = 2000;

let mut wat = Vec::new();
Expand Down

0 comments on commit cc8ba64

Please sign in to comment.