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.

16 lines
329 B

  1. use ark_algebra_bench_templates::*;
  2. use ark_bw6_761::{
  3. fq::Fq, fq3::Fq3, fq6::Fq6, fr::Fr, g1::G1Projective as G1, g2::G2Projective as G2, BW6_761,
  4. };
  5. bench!(
  6. Name = "BW6_761",
  7. Pairing = BW6_761,
  8. G1 = G1,
  9. G2 = G2,
  10. ScalarField = Fr,
  11. G1BaseField = Fq,
  12. G2BaseField = Fq3,
  13. TargetField = Fq6,
  14. );