Update to new benchmarking framework (#126)

This commit is contained in:
Pratyush Mishra
2022-09-09 19:24:33 -07:00
committed by GitHub
parent 55a092a6c7
commit 363426c1d4
42 changed files with 244 additions and 448 deletions

9
pallas/benches/pallas.rs Normal file
View File

@@ -0,0 +1,9 @@
use ark_algebra_bench_templates::*;
use ark_pallas::{fq::Fq, fr::Fr, Projective as G};
bench!(
Name = "Pallas",
Group = G,
ScalarField = Fr,
PrimeBaseField = Fq,
);