Add benchmarks for secp256k1

This commit is contained in:
Michele Orrù
2023-01-28 22:25:23 +01:00
committed by Pratyush Mishra
parent 3668338023
commit d5447dec42
3 changed files with 16 additions and 1 deletions

View File

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