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

fix: bench.rs panics #660

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open
16 changes: 8 additions & 8 deletions math/benches/bench.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ fn bench_uint128(c: &mut Criterion) {

let mut u128_c = c.benchmark_group("u128");

bench_op(&mut u128_c, &u128_one, &u128_two, |a, b| a + b, "add");
bench_op(&mut u128_c, &u128_one, &u64s, |a, b| a + (b as u128), "addition u64");
bench_op(&mut u128_c, &u128_one, &u128_two, |a, b| a * b, "multiplication");
bench_op(&mut u128_c, &u128_one, &u64s, |a, b| a * (b as u128), "multiplication u64");
bench_op(&mut u128_c, &u128_one, &u128_two, |a, b| a / b, "division");
bench_op(&mut u128_c, &u128_one, &u64s, |a, b| a / (b as u128), "u64 division");
bench_op(&mut u128_c, &u128_one, &shifts, |a, b| a << b, "left shift");
bench_op(&mut u128_c, &u128_one, &shifts, |a, b| a >> b, "right shift");
bench_op(&mut u128_c, &u128_one, &u128_two, |a, b| a.wrapping_add(b), "add");
bench_op(&mut u128_c, &u128_one, &u64s, |a, b| a.wrapping_add(b as u128), "addition u64");
bench_op(&mut u128_c, &u128_one, &u128_two, |a, b| a.wrapping_mul(b), "multiplication");
bench_op(&mut u128_c, &u128_one, &u64s, |a, b| a.wrapping_mul(b as u128), "multiplication u64");
bench_op(&mut u128_c, &u128_one, &u128_two, |a, b| a.wrapping_div(b), "division");
bench_op(&mut u128_c, &u128_one, &u64s, |a, b| a.wrapping_div(b as u128), "u64 division");
bench_op(&mut u128_c, &u128_one, &shifts, |a, b| a.wrapping_shl(b), "left shift");
bench_op(&mut u128_c, &u128_one, &shifts, |a, b| a.wrapping_shr(b), "right shift");
u128_c.finish();

let mut uint128_c = c.benchmark_group("Uint128");
Expand Down