mirror of
https://github.com/arnaucube/ark-curves-cherry-picked.git
synced 2026-01-11 16:31:36 +01:00
Fix benchmark compilation and add benchmarks for Edwards curves
This commit is contained in:
@@ -10,12 +10,20 @@ use ark_ff::{
|
||||
biginteger::BigInteger320 as FqRepr, BigInteger, Field, PrimeField, SquareRootField,
|
||||
UniformRand,
|
||||
};
|
||||
use ark_mnt_298::mnt4_298::{
|
||||
use ark_mnt4_298::{
|
||||
fq::Fq, fq2::Fq2, fr::Fr, Fq4, G1Affine, G1Projective as G1, G2Affine, G2Projective as G2,
|
||||
Parameters, MNT4_298,
|
||||
};
|
||||
|
||||
ec_bench!();
|
||||
mod g1 {
|
||||
use super::*;
|
||||
ec_bench!(G1, G1Affine);
|
||||
}
|
||||
mod g2 {
|
||||
use super::*;
|
||||
ec_bench!(G2, G2Affine);
|
||||
}
|
||||
|
||||
f_bench!(1, Fq2, Fq2, fq2);
|
||||
f_bench!(2, Fq4, Fq4, fq4);
|
||||
f_bench!(Fq, Fq, FqRepr, FqRepr, fq);
|
||||
|
||||
Reference in New Issue
Block a user