forked from visoftsolutions/noir_rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Improve ivc bench (AztecProtocol#4242)
Makes the goblin bench more representative of the real aztec architecture. - General structure of the bench suite has been updated for clarity - Each "accumulation round" consists of a function and kernel - The first function is size 2^19 and subsequent function circuits are 2^17 - Every kernel is size 2^17 - All circuits are "full" relative to their dyadic size - Mock circuit logic now consists of "big" primitive operations, e.g. sha256, merkle membership checks etc. rather than simple arithmetic gates. (Methods for constructing these individual circuits have been moved to appropriate locations in the stdlib as discussed). - The "nominal" bench has 6 iterations resulting in 12 UGH circuits/proofs --------- Co-authored-by: codygunton <codygunton@gmail.com> Co-authored-by: ludamad <adam@aztecprotocol.com>
- Loading branch information
1 parent
0ed4126
commit 9d28354
Showing
24 changed files
with
428 additions
and
247 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
2 changes: 1 addition & 1 deletion
2
barretenberg/cpp/src/barretenberg/benchmark/goblin_bench/CMakeLists.txt
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 +1 @@ | ||
barretenberg_module(goblin_bench ultra_honk eccvm stdlib_recursion) | ||
barretenberg_module(goblin_bench ultra_honk eccvm stdlib_recursion stdlib_sha256 stdlib_merkle_tree stdlib_primitives) |
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
Oops, something went wrong.