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.

13 lines
302 B

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