-
Notifications
You must be signed in to change notification settings - Fork 112
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
verify_cell_kzg_proof_batch()
: Abstract commitment to interpolation poly
#494
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
37610a7
verify_cell_kzg_proof_batch: Abstract commit to interpolation poly
asn-d6 ee96c09
Minor improvements
asn-d6 146c4d6
Address review comments
asn-d6 a911e94
Fix param-description whitespace
jtraglia 5dd2d69
Fix comment style
jtraglia 00a25ac
Convert paragraph into sections
jtraglia a99ab57
Make is_cell_used the first array
jtraglia c46337a
Delete duplicate comment
jtraglia 3d5d109
Add more comments to scaling section
jtraglia File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
As this PR only moved this, this is a comment that probably should be addressed in a separate PR:
We set
is_cell_used
at indices which are not a multiple ofFIELD_ELEMENTS_PER_CELL
, but only read it at multiples ofFIELD_ELEMENTS_PER_CELL
.This seems unnecessary. Why not just set
is_cell_used[cell_indices[i]] = true
in the outer loop and making theis_cell_used
array smaller?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.
Good point. Let's handle this on another PR.