Skip to content

Commit

Permalink
minroot: Fix copy-paste typo (#311)
Browse files Browse the repository at this point in the history
  • Loading branch information
wwared committed Feb 10, 2024
1 parent 82b55c1 commit 5fd2c38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/minroot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,8 @@ fn main() {
type E2 = GrumpkinEngine;
type EE1 = arecibo::provider::hyperkzg::EvaluationEngine<Bn256, E1>;
type EE2 = arecibo::provider::ipa_pc::EvaluationEngine<E2>;
type S1 = arecibo::spartan::ppsnark::RelaxedR1CSSNARK<E1, EE1>; // non-preprocessing SNARK
type S2 = arecibo::spartan::ppsnark::RelaxedR1CSSNARK<E2, EE2>; // non-preprocessing SNARK
type S1 = arecibo::spartan::ppsnark::RelaxedR1CSSNARK<E1, EE1>; // preprocessing SNARK
type S2 = arecibo::spartan::ppsnark::RelaxedR1CSSNARK<E2, EE2>; // preprocessing SNARK

let res = CompressedSNARK::<_, S1, S2>::prove(&pp, &pk, &recursive_snark);
println!(
Expand Down

1 comment on commit 5fd2c38

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmarks

Table of Contents

Overview

This benchmark report shows the Arecibo GPU benchmarks.
NVIDIA L4
Intel(R) Xeon(R) CPU @ 2.20GHz
32 vCPUs
125 GB RAM
Workflow run: https://github.com/lurk-lab/arecibo/actions/runs/7857150654

Benchmark Results

RecursiveSNARK-NIVC-2

ref=82b55c1 ref=5fd2c38
Prove-NumCons-6540 53.14 ms (✅ 1.00x) 53.19 ms (✅ 1.00x slower)
Verify-NumCons-6540 33.19 ms (✅ 1.00x) 33.03 ms (✅ 1.00x faster)
Prove-NumCons-1028888 346.37 ms (✅ 1.00x) 329.10 ms (✅ 1.05x faster)
Verify-NumCons-1028888 257.86 ms (✅ 1.00x) 238.47 ms (✅ 1.08x faster)

CompressedSNARK-NIVC-Commitments-2

ref=82b55c1 ref=5fd2c38
Prove-NumCons-6540 14.18 s (✅ 1.00x) 13.99 s (✅ 1.01x faster)
Verify-NumCons-6540 79.31 ms (✅ 1.00x) 78.58 ms (✅ 1.01x faster)
Prove-NumCons-1028888 111.18 s (✅ 1.00x) 110.87 s (✅ 1.00x faster)
Verify-NumCons-1028888 773.41 ms (✅ 1.00x) 773.26 ms (✅ 1.00x faster)

Made with criterion-table

Please sign in to comment.