-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* refactor: Refactor public param digest tests in lib.rs - Refactored test functions within the tests module for greater efficiency and readability. - Removed `DlogGroup` trait usage within the `test_pp_digest_with` function. - Simplified `test_pp_digest` function by removing redundant circuit instantiation. * chore: Upgrade Rust Toolchain Version to 1.76.0 - Upgraded the rust toolchain version from `1.75` to `1.76.0` in `rust-toolchain.toml` file. - Closes #307 * chore: Refactor pprof dependency - Shifted `pprof` from `dev-dependencies` to `dependencies` for non-wasm32 targets to optimize benchmarking builds. - Introduced "flamegraph" feature to include `pprof` during benchmarking. - Closes #309 * refactor: Refactor computation in sumcheck module - Streamlined calculation of evaluation points in `compute_eval_points_quad` and `compute_eval_points_cubic_with_additive_term` functions within `src/spartan/sumcheck/mod.rs`.
- Loading branch information
1 parent
26fd303
commit 9064bfe
Showing
4 changed files
with
42 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[toolchain] | ||
# The default profile includes rustc, rust-std, cargo, rust-docs, rustfmt and clippy. | ||
profile = "default" | ||
channel = "1.75" | ||
channel = "1.76.0" | ||
targets = [ "wasm32-unknown-unknown" ] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9064bfe
There was a problem hiding this comment.
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/7878505077
Benchmark Results
RecursiveSNARK-NIVC-2
ref=26fd303
ref=9064bfe
Prove-NumCons-6540
53.75 ms
(✅ 1.00x)53.96 ms
(✅ 1.00x slower)Verify-NumCons-6540
33.98 ms
(✅ 1.00x)34.74 ms
(✅ 1.02x slower)Prove-NumCons-1028888
349.75 ms
(✅ 1.00x)345.93 ms
(✅ 1.01x faster)Verify-NumCons-1028888
255.57 ms
(✅ 1.00x)256.97 ms
(✅ 1.01x slower)CompressedSNARK-NIVC-Commitments-2
ref=26fd303
ref=9064bfe
Prove-NumCons-6540
14.31 s
(✅ 1.00x)14.21 s
(✅ 1.01x faster)Verify-NumCons-6540
83.64 ms
(✅ 1.00x)84.14 ms
(✅ 1.01x slower)Prove-NumCons-1028888
113.30 s
(✅ 1.00x)113.23 s
(✅ 1.00x faster)Verify-NumCons-1028888
782.73 ms
(✅ 1.00x)780.58 ms
(✅ 1.00x faster)Made with criterion-table