You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
319 B

  1. use ark_algebra_bench_templates::*;
  2. use ark_mnt4_753::{
  3. fq::Fq, fq2::Fq2, fr::Fr, Fq4, G1Projective as G1, G2Projective as G2, MNT4_753,
  4. };
  5. bench!(
  6. Name = "MNT4_753",
  7. Pairing = MNT4_753,
  8. G1 = G1,
  9. G2 = G2,
  10. ScalarField = Fr,
  11. G1BaseField = Fq,
  12. G2BaseField = Fq2,
  13. TargetField = Fq4,
  14. );