Skip to content

Commit

Permalink
10^7 muls
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Feb 23, 2024
1 parent a7b7754 commit d3db31c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/alu/mul/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ mod tests {

// Fill mul_events with 10^6 MULHSU events.
let mut mul_events: Vec<AluEvent> = Vec::new();
for _ in 0..10i32.pow(6) {
for _ in 0..10i32.pow(7) {
mul_events.push(AluEvent::new(
0,
Opcode::MULHSU,
Expand Down

0 comments on commit d3db31c

Please sign in to comment.