Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenfeizhang committed Sep 12, 2024
1 parent 909e430 commit 75ba793
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions arith/benches/field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -201,13 +201,15 @@ fn bench_mul_i32<F: Field>(c: &mut Criterion) {
}

fn criterion_benchmark(c: &mut Criterion) {

bench_mul_i32::<Fr>(c);
// bench_field::<M31>(c);
// bench_field::<M31x16>(c);
// #[cfg(target_arch = "x86_64")]
// bench_field::<M31x16_256>(c);
// bench_field::<M31Ext3>(c);
// bench_field::<M31Ext3x16>(c);

bench_field::<M31>(c);
bench_field::<M31x16>(c);
#[cfg(target_arch = "x86_64")]
bench_field::<M31x16_256>(c);
bench_field::<M31Ext3>(c);
bench_field::<M31Ext3x16>(c);
bench_field::<Fr>(c);
bench_field::<GF2>(c);
bench_field::<GF2x8>(c);
Expand Down

0 comments on commit 75ba793

Please sign in to comment.