-
Notifications
You must be signed in to change notification settings - Fork 16
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
Frontend and backend for building circuits #799
base: master
Are you sure you want to change the base?
Conversation
5e1aa50
to
dc664af
Compare
dc664af
to
929eddf
Compare
Suggestions for #799 Feel free to pick and choose from the suggestions. I talk about most of them on your PR. --------- Co-authored-by: dreamATD <[email protected]>
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.
First pass on gkr_iop
. It makes sense so far.
|
||
use super::Chip; | ||
|
||
impl Chip { |
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.
Suggesting the name CircuitBuilder
instead of Chip
.
gkr_iop/src/lib.rs
Outdated
// TODO: the following trait consists of `commit_phase1`, `commit_phase2`, `gkr_phase` and `opening_phase`. | ||
pub trait ProtocolProver<E: ExtensionField, Trans: Transcript<E>, PCS> {} | ||
|
||
// TODO: the following trait consists of `commit_phase1`, `commit_phase2`, `gkr_phase` and `opening_phase`. | ||
pub trait ProtocolVerifier<E: ExtensionField, Trans: Transcript<E>, PCS> {} |
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.
@naure If I will implement those traits for Chip
later, do you still think it's better to rename Chip
to be CircuitBuilder
?
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.
Or just add a ///
comment that explains all the responsibilities of the Chip type?
16b57f3
to
29061f1
Compare
This is an implementation of the expression-based and plonkish-like GKR IOP protocol. The circuit is denoted as
Chip
, holding all information to process commit phases and GKR proving phase. In the current implementation, we assume there are two commit phases. To process the GKR phase, we extract aGKRCircuit
from it and run the GKR protocol. For the implementation status, the GKR phase is ready for review, while the commit phases hasn't been finalized.Define a GKR IOP protocol for a chip includes defining
build_commit_phase
,build_commit_phase2
andbuild_gkr_phase
. Specially,build_gkr_phase
is mainly to build GKR layers in the reverse order. In addition to specify the expressions, to simplify the case of either transferring evaluations from an input of a succeeding layer to an output of the current layer or even make some computations before feeding to the current layer, we use an evaluation tape to place the evaluations andEvalExpression
to define the computation. Each layer input will be assigned a position in the evaluation tape.EvalExpression
is defined as follows:of which the items denote how to compute the output evaluations. For more details please refer to gkr_iop/src/evaluation.rs.
Here are some subsequent tasks:
subprotocols/src/expression/
.Although the previous tasks should be done, I suggest to start the first round of review first. Would like to see comments from @naure and @hero78119 so that I can adjust the design before moving forward.
Upd: The design doc: https://hackmd.io/@sphere-liu/HyLR-h2L1g.