-
Notifications
You must be signed in to change notification settings - Fork 35
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
Find out the max number of entries that is possible to put into the advidce columns given a certain K #274
Comments
The current maximum number of users that can be accommodated is This configuration leads to an issue where the UnivariateGrandSum circuit cannot be fully populated with The table structure is illustrated as follows:
The root cause of this issue stems from the At row Below is the actual trace log for reference:
To resolve this issue, we must consider assigning the zero value used in the range check chip to a more suitable location rather than the fixed column. |
|
The expected maximum number of usable columns for the univariate grand sum circuit is 2^K-6.
https://github.com/summa-dev/halo2/blob/main/halo2_proofs/src/plonk/circuit.rs#L2349
https://github.com/summa-dev/halo2/blob/main/halo2_proofs/src/plonk/prover.rs#L310
However, the observed number is much lower.
The text was updated successfully, but these errors were encountered: