-
Notifications
You must be signed in to change notification settings - Fork 12
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
Mix All Components Into Channel #350
base: main
Are you sure you want to change the base?
Conversation
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.
Reviewed 1 of 1 files at r1, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @shaharsamocha7)
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.
Reviewed all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @Gali-StarkWare)
stwo_cairo_prover/crates/prover/src/cairo_air/air.rs
line 409 at r1 (raw file):
pub fn mix_into(&self, channel: &mut impl Channel) { self.opcodes.mix_into(channel); self.memory_address_to_id.mix_into(channel);
Add also
self.verify_instruction.mix_into(channel);
a294412
to
59677d3
Compare
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.
Reviewable status: 0 of 1 files reviewed, 1 unresolved discussion (waiting on @ohad-starkware and @shaharsamocha7)
stwo_cairo_prover/crates/prover/src/cairo_air/air.rs
line 409 at r1 (raw file):
Previously, shaharsamocha7 wrote…
Add also
self.verify_instruction.mix_into(channel);
Oops, done
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.
Reviewed 1 of 1 files at r2, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @shaharsamocha7)
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.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @Gali-StarkWare)
stwo_cairo_prover/crates/prover/src/cairo_air/air.rs
line 409 at r1 (raw file):
Previously, Gali-StarkWare wrote…
Oops, done
can you do it in the same order as in claim::mix_into?
59677d3
to
2f55b57
Compare
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.
Reviewable status: 0 of 1 files reviewed, 1 unresolved discussion (waiting on @ohad-starkware and @shaharsamocha7)
stwo_cairo_prover/crates/prover/src/cairo_air/air.rs
line 409 at r1 (raw file):
Previously, shaharsamocha7 wrote…
can you do it in the same order as in claim::mix_into?
I did it according to the orders in CairoClaim and in CairoInteructionClaim respectively, which are different for some reason. I can do another PR for making them the same.
This change is