Skip to content
Snippets Groups Projects

dont' hardcode curves in the benchmarks

Merged STEVAN Antoine requested to merge fix-hardcoded-curve-benchmarks into main
1 file
+ 3
7
Compare changes
  • Side-by-side
  • Inline
+ 3
7
@@ -114,13 +114,9 @@ fn main() {
cli.n,
&cli.encoding,
),
Curve::BN254 => template::<ark_bn254::Fr>(
&b.with_name("BN254"),
n,
cli.k,
cli.n,
&cli.encoding,
),
Curve::BN254 => {
template::<ark_bn254::Fr>(&b.with_name("BN254"), n, cli.k, cli.n, &cli.encoding)
}
Curve::Pallas => template::<ark_pallas::Fr>(
&b.with_name("PALLAS"),
n,
Loading