Skip to content

Commit

Permalink
fix: typos (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurpaulino authored Mar 5, 2024
1 parent 59caba3 commit 07f571e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,11 @@ wildcards = "allow"
# * all - Both lowest-version and simplest-path are used
highlight = "all"
# The default lint level for `default` features for crates that are members of
# the workspace that is being checked. This can be overriden by allowing/denying
# the workspace that is being checked. This can be overridden by allowing/denying
# `default` on a crate-by-crate basis if desired.
workspace-default-features = "allow"
# The default lint level for `default` features for external crates that are not
# members of the workspace. This can be overriden by allowing/denying `default`
# members of the workspace. This can be overridden by allowing/denying `default`
# on a crate-by-crate basis if desired.
external-default-features = "allow"
# List of crates that are allowed. Use with care!
Expand Down
2 changes: 1 addition & 1 deletion src/provider/non_hiding_zeromorph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ where
}

/// Generate a commitment for a polynomial
/// Note that the scheme is not hidding
/// Note that the scheme is not hiding
pub fn commit(
prover_param: impl Borrow<KZGProverKey<E>>,
poly: &UVKZGPoly<E::Fr>,
Expand Down
2 changes: 1 addition & 1 deletion src/supernova/test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ where
// Here demo a simple RAM machine
// - with 2 argumented circuit
// - each argumented circuit contains primary and secondary circuit
// - a memory commmitment via a public IO `rom` (like a program) to constraint the sequence execution
// - a memory commitment via a public IO `rom` (like a program) to constraint the sequence execution

// This test also ready to add more argumented circuit and ROM can be arbitrary length

Expand Down

1 comment on commit 07f571e

@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/8156359658

Benchmark Results

RecursiveSNARK-NIVC-2

ref=59caba3 ref=07f571e
Prove-NumCons-6540 44.32 ms (✅ 1.00x) 44.39 ms (✅ 1.00x slower)
Verify-NumCons-6540 34.15 ms (✅ 1.00x) 34.37 ms (✅ 1.01x slower)
Prove-NumCons-1028888 318.97 ms (✅ 1.00x) 317.19 ms (✅ 1.01x faster)
Verify-NumCons-1028888 248.65 ms (✅ 1.00x) 250.86 ms (✅ 1.01x slower)

CompressedSNARK-NIVC-Commitments-2

ref=59caba3 ref=07f571e
Prove-NumCons-6540 10.46 s (✅ 1.00x) 10.58 s (✅ 1.01x slower)
Verify-NumCons-6540 50.72 ms (✅ 1.00x) 50.55 ms (✅ 1.00x faster)
Prove-NumCons-1028888 53.03 s (✅ 1.00x) 53.61 s (✅ 1.01x slower)
Verify-NumCons-1028888 50.81 ms (✅ 1.00x) 50.67 ms (✅ 1.00x faster)

Made with criterion-table

Please sign in to comment.