Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(avm): Reduce the number of gates for fake AVM recursive verifier #10619

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,10 @@ pub struct AvmProofData {
// The number of columns for the AVM recursive verifier we want to fake, i.e., the resulting
// verify() routine below will create a similar number of gates as a real AVM recursive verifier
// with the number of columns set by this constant.
pub global DUMMY_AVM_VERIFIER_NUM_COLUMNS: u32 = 2200;
// NOTE: It was decided to reduce the number of gates of the fake recursive verifier to 5 millions
// as this would be the target for main net. Therefore, the number of columns was artificially adjusted
// to 550. Zac has some ideas on how to improve the gate counts for the AVM recursive verifier until then.
pub global DUMMY_AVM_VERIFIER_NUM_COLUMNS: u32 = 550;

// Current AVM recursive verifier has 9500 gates per column.
// Note that the addition of a single column in AVM recursive verifier incurs 8500 gates.
Expand Down
Loading