-
Notifications
You must be signed in to change notification settings - Fork 180
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
Add support for periodic columns in LogUp-GKR #307
Merged
Merged
Changes from 23 commits
Commits
Show all changes
27 commits
Select commit
Hold shift + click to select a range
8ac25c7
feat: math utilities needed for sum-check protocol
Al-Kindi-0 5e06378
feat: add sum-check prover and verifier
Al-Kindi-0 16389d6
tests: add sanity tests for utils
Al-Kindi-0 380aa1a
doc: document sumcheck_round
Al-Kindi-0 7a1a99e
feat: use SmallVec
Al-Kindi-0 1901066
docs: improve documentation of sum-check
Al-Kindi-0 8a57216
feat: add remaining functions for sum-check verifier
Al-Kindi-0 ff9e6fa
chore: move prover into sub-mod
Al-Kindi-0 7e24f8f
chore: remove utils mod
Al-Kindi-0 23044e8
chore: remove utils mod
Al-Kindi-0 ad0497d
chore: move logup evaluator trait to separate file
Al-Kindi-0 a0272ea
feat: add GKR backend for LogUp-GKR
Al-Kindi-0 7b8caff
chore: remove old way of handling Lagrange kernel
Al-Kindi-0 e2b8c12
wip: add s-column constraints
Al-Kindi-0 b813916
chore: correct header
Al-Kindi-0 492f247
wip
Al-Kindi-0 0d664e0
wip: add support for periodic columns in gkr backend
Al-Kindi-0 8617308
Merge branch 'logup-gkr' into al-gkr-periodic
Al-Kindi-0 ed781d8
chore: fix post merge issues
Al-Kindi-0 98c0e71
chore: fix issues
Al-Kindi-0 807aba1
doc: add comment about periodic values table
Al-Kindi-0 4e6d3ab
chore: address feedback
Al-Kindi-0 c93ec35
chore: fix concurrent portion
Al-Kindi-0 873345a
chore: address feedback
Al-Kindi-0 d94794a
chore: address feedback
Al-Kindi-0 b484e04
chore: remove unnecessary mut
Al-Kindi-0 dec6589
chore: remove unnecessary mut
Al-Kindi-0 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
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
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
irakliyk marked this conversation as resolved.
Show resolved
Hide resolved
|
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.
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.
E
is not used, and it is redundant, right? It seems like we could always makeF::BaseField
the basefield, andF
the extension field (orF::BaseField
andF
both be the base field).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.
Thanks for the suggestion, switched to it
Indeed, the generic is redundant now, it is a leftover from a previous iteration. Removed now