Browse Source

Change benchmark order

fq2_neg_nonresidue
Pratyush Mishra 3 years ago
parent
commit
76cc7aa044
10 changed files with 10 additions and 10 deletions
  1. +1
    -1
      curve-benches/benches/bls12_377.rs
  2. +1
    -1
      curve-benches/benches/bls12_381.rs
  3. +1
    -1
      curve-benches/benches/bn254.rs
  4. +1
    -1
      curve-benches/benches/bw6_761.rs
  5. +1
    -1
      curve-benches/benches/cp6_782.rs
  6. +1
    -1
      curve-benches/benches/ed_on_bls12_381.rs
  7. +1
    -1
      curve-benches/benches/mnt4_298.rs
  8. +1
    -1
      curve-benches/benches/mnt4_753.rs
  9. +1
    -1
      curve-benches/benches/mnt6_298.rs
  10. +1
    -1
      curve-benches/benches/mnt6_753.rs

+ 1
- 1
curve-benches/benches/bls12_377.rs

@ -31,4 +31,4 @@ f_bench!(target, Fq12, Fq12, fq12);
pairing_bench!(Bls12_377, Fq12);
bencher::benchmark_main!(g1::group_ops, g2::group_ops, fq, fr, fq2, fq12, pairing);
bencher::benchmark_main!(fq, fr, fq2, fq12, g1::group_ops, g2::group_ops, pairing);

+ 1
- 1
curve-benches/benches/bls12_381.rs

@ -31,4 +31,4 @@ f_bench!(target, Fq12, Fq12, fq12);
pairing_bench!(Bls12_381, Fq12);
bencher::benchmark_main!(g1::group_ops, g2::group_ops, fq, fr, fq2, fq12, pairing);
bencher::benchmark_main!(fq, fr, fq2, fq12, g1::group_ops, g2::group_ops, pairing);

+ 1
- 1
curve-benches/benches/bn254.rs

@ -31,4 +31,4 @@ f_bench!(target, Fq12, Fq12, fq12);
pairing_bench!(Bn254, Fq12);
bencher::benchmark_main!(g1::group_ops, g2::group_ops, fq, fr, fq2, fq12, pairing);
bencher::benchmark_main!(fq, fr, fq2, fq12, g1::group_ops, g2::group_ops, pairing);

+ 1
- 1
curve-benches/benches/bw6_761.rs

@ -30,4 +30,4 @@ f_bench!(Fq, Fq, FqRepr, FqRepr, fq);
f_bench!(Fr, Fr, FrRepr, FrRepr, fr);
pairing_bench!(BW6_761, Fq6);
bencher::benchmark_main!(g1::group_ops, g2::group_ops, fq, fr, fq3, fq6, pairing);
bencher::benchmark_main!(fq, fr, fq3, fq6, g1::group_ops, g2::group_ops, pairing);

+ 1
- 1
curve-benches/benches/cp6_782.rs

@ -28,4 +28,4 @@ f_bench!(Fq, Fq, FqRepr, FqRepr, fq);
f_bench!(Fr, Fr, FrRepr, FrRepr, fr);
pairing_bench!(CP6_782, Fq6);
bencher::benchmark_main!(g1::group_ops, g2::group_ops, fq, fr, fq3, fq6, pairing);
bencher::benchmark_main!(fq, fr, fq3, fq6, g1::group_ops, g2::group_ops, pairing);

+ 1
- 1
curve-benches/benches/ed_on_bls12_381.rs

@ -18,4 +18,4 @@ mod g {
f_bench!(Fq, Fq, FqRepr, FqRepr, fq);
f_bench!(Fr, Fr, FrRepr, FrRepr, fr);
bencher::benchmark_main!(g::group_ops, fq, fr);
bencher::benchmark_main!(fq, fr, g::group_ops);

+ 1
- 1
curve-benches/benches/mnt4_298.rs

@ -30,4 +30,4 @@ f_bench!(Fq, Fq, FqRepr, FqRepr, fq);
f_bench!(Fr, Fr, FqRepr, FqRepr, fr);
pairing_bench!(MNT4_298, Fq4);
bencher::benchmark_main!(g1::group_ops, g2::group_ops, fq, fr, fq2, fq4, pairing);
bencher::benchmark_main!(fq, fr, fq2, fq4, g1::group_ops, g2::group_ops, pairing);

+ 1
- 1
curve-benches/benches/mnt4_753.rs

@ -30,4 +30,4 @@ f_bench!(Fq, Fq, FqRepr, FqRepr, fq);
f_bench!(Fr, Fr, FqRepr, FqRepr, fr);
pairing_bench!(MNT4_753, Fq4);
bencher::benchmark_main!(g1::group_ops, g2::group_ops, fq, fr, fq2, fq4, pairing);
bencher::benchmark_main!(fq, fr, fq2, fq4, g1::group_ops, g2::group_ops, pairing);

+ 1
- 1
curve-benches/benches/mnt6_298.rs

@ -30,4 +30,4 @@ f_bench!(Fq, Fq, FqRepr, FqRepr, fq);
f_bench!(Fr, Fr, FqRepr, FqRepr, fr);
pairing_bench!(MNT6_298, Fq6);
bencher::benchmark_main!(g1::group_ops, g2::group_ops, fq, fr, fq3, fq6, pairing);
bencher::benchmark_main!(fq, fr, fq3, fq6, g1::group_ops, g2::group_ops, pairing);

+ 1
- 1
curve-benches/benches/mnt6_753.rs

@ -30,4 +30,4 @@ f_bench!(Fq, Fq, FqRepr, FqRepr, fq);
f_bench!(Fr, Fr, FqRepr, FqRepr, fr);
pairing_bench!(MNT6_753, Fq6);
bencher::benchmark_main!(g1::group_ops, g2::group_ops, fq, fr, fq3, fq6, pairing);
bencher::benchmark_main!(fq, fr, fq3, fq6, g1::group_ops, g2::group_ops, pairing);

Loading…
Cancel
Save