-
Notifications
You must be signed in to change notification settings - Fork 63
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
Prover/Convert projection protocol to a query #585
base: prover/limitless-top-level
Are you sure you want to change the base?
Prover/Convert projection protocol to a query #585
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## prover/limitless-top-level #585 +/- ##
================================================================
- Coverage 68.49% 68.46% -0.04%
+ Complexity 1130 1129 -1
================================================================
Files 321 321
Lines 12842 12842
Branches 1287 1287
================================================================
- Hits 8796 8792 -4
- Misses 3506 3507 +1
- Partials 540 543 +3
|
jvm-libs/blob-compressor/src/test/resources/net/consensys/linea/nativecompressor/rlp_blocks.bin
Outdated
Show resolved
Hide resolved
@@ -273,7 +273,7 @@ func (a *Alignment) csIsActive(comp *wizard.CompiledIOP) { | |||
// csProjection ensures the data in the [Alignment.Data] column is the same as | |||
// the data provided by the [Alignment.CircuitInput]. | |||
func (a *Alignment) csProjection(comp *wizard.CompiledIOP) { | |||
projection.InsertProjection(comp, ifaces.QueryIDf("%v_PROJECTION", a.Name), []ifaces.Column{a.DataToCircuit}, []ifaces.Column{a.CircuitInput}, a.DataToCircuitMask, a.ActualCircuitInputMask) | |||
projection.RegisterProjection(comp, ifaces.QueryIDf("%v_PROJECTION", a.Name), []ifaces.Column{a.DataToCircuit}, []ifaces.Column{a.CircuitInput}, a.DataToCircuitMask, a.ActualCircuitInputMask) |
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.
Shouldn't that be a method of 'comp' now?
"github.com/consensys/linea-monorepo/prover/protocol/wizardutils" | ||
) | ||
|
||
func RegisterProjection( |
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.
Iiuc, this function does not do really anything on top of comp.InsertProverAction.
It would simplify the code if we removed it.
This PR converts the projection protocol to a query of the compiled IOP. This is a prerequisite for horizontal and vertical splitting for the limitless prover.
Checklist