-
Notifications
You must be signed in to change notification settings - Fork 9
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
jump #221
jump #221
Conversation
This stack of pull requests is managed by Graphite. Learn more about stacking. |
40551bf
to
1a7361b
Compare
6ca67ae
to
ce06e32
Compare
1a7361b
to
ad8af38
Compare
ce06e32
to
fb10de6
Compare
ad8af38
to
b4397f8
Compare
fb10de6
to
0369c8d
Compare
b4397f8
to
20050e9
Compare
0369c8d
to
4a531c5
Compare
20050e9
to
12405d4
Compare
4a531c5
to
f8398a7
Compare
12405d4
to
55a6755
Compare
f8398a7
to
e225177
Compare
55a6755
to
3904f5b
Compare
e225177
to
88eb7c1
Compare
88eb7c1
to
113b45e
Compare
2eb50bd
to
e852538
Compare
113b45e
to
3a2868f
Compare
3615601
to
7d5ed9e
Compare
3a2868f
to
e273071
Compare
7d5ed9e
to
97a39a7
Compare
e273071
to
8afd63d
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.
Reviewed all commit messages.
Reviewable status: 0 of 15 files reviewed, 3 unresolved discussions (waiting on @ohad-starkware)
a discussion (no related file):
Rename the jumps to
jump_x_y_z (x,y,z \in {f,t})
stwo_cairo_prover/crates/prover/src/cairo_air/opcodes_air.rs
line 48 at r4 (raw file):
jnz_t_t: Vec<jnz_opcode_is_taken_t_dst_base_fp_t::Claim>, jump_f_f: Vec<jump_opcode_is_rel_f_is_imm_f_is_double_deref_f::Claim>, jump_f_t: Vec<jump_opcode_is_rel_f_is_imm_f_is_double_deref_t::Claim>,
Rename to jump_fft :)
Suggestion:
jump_f_f_t: Vec<jump_opcode_is_rel_f_is_imm_f_is_double_deref_t::Claim>
stwo_cairo_prover/crates/prover/src/cairo_air/opcodes_air.rs
line 74 at r4 (raw file):
self.jump_f_f.iter().for_each(|c| c.mix_into(channel)); self.jump_f_t.iter().for_each(|c| c.mix_into(channel)); self.jump_t_f.iter().for_each(|c| c.mix_into(channel));
You missed one
Suggestion:
self.jump_f_f.iter().for_each(|c| c.mix_into(channel));
self.jump_f_t.iter().for_each(|c| c.mix_into(channel));
self.jump_t_f.iter().for_each(|c| c.mix_into(channel));
self.jump_t_t.iter().for_each(|c| c.mix_into(channel));
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 15 files reviewed, 3 unresolved discussions (waiting on @shaharsamocha7)
a discussion (no related file):
Previously, shaharsamocha7 wrote…
Rename the jumps to
jump_x_y_z (x,y,z \in {f,t})
Done.s
stwo_cairo_prover/crates/prover/src/cairo_air/opcodes_air.rs
line 48 at r4 (raw file):
Previously, shaharsamocha7 wrote…
Rename to jump_fft :)
Done.
stwo_cairo_prover/crates/prover/src/cairo_air/opcodes_air.rs
line 74 at r4 (raw file):
Previously, shaharsamocha7 wrote…
You missed one
Done.
8afd63d
to
9376e46
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.
Reviewed all commit messages.
Reviewable status: 0 of 15 files reviewed, 2 unresolved discussions (waiting on @ohad-starkware)
stwo_cairo_prover/crates/prover/src/cairo_air/opcodes_air.rs
line 154 at r5 (raw file):
let mut jump_f_t = vec![]; let mut jump_t_f = vec![]; let mut jump_t_t = vec![];
also here
and anywhere
Code quote:
let mut jump_f_f = vec![];
let mut jump_f_t = vec![];
let mut jump_t_f = vec![];
let mut jump_t_t = vec![];
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 15 files reviewed, 2 unresolved discussions (waiting on @shaharsamocha7)
stwo_cairo_prover/crates/prover/src/cairo_air/opcodes_air.rs
line 154 at r5 (raw file):
Previously, shaharsamocha7 wrote…
also here
and anywhere
Done.
97a39a7
to
93f391a
Compare
9376e46
to
709af91
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.
Reviewed 12 of 15 files at r1, 1 of 3 files at r4, 2 of 2 files at r6, all commit messages.
Reviewable status: all files reviewed, 2 unresolved discussions (waiting on @ohad-starkware)
stwo_cairo_prover/crates/prover/src/cairo_air/opcodes_air.rs
line 1184 at r6 (raw file):
}) .collect(); let jump_f_f_interaction_claims = self
:(
Suggestion:
let jump_f_f_f_interaction_claims = self
stwo_cairo_prover/crates/prover/src/cairo_air/opcodes_air.rs
line 1693 at r6 (raw file):
}) .collect_vec(); let jump_f_f_components = claim
:( x2
Suggestion:
let jump_f_f_f_components = claim
709af91
to
03d1215
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: 14 of 15 files reviewed, 2 unresolved discussions (waiting on @shaharsamocha7)
stwo_cairo_prover/crates/prover/src/cairo_air/opcodes_air.rs
line 1184 at r6 (raw file):
Previously, shaharsamocha7 wrote…
:(
Done.
stwo_cairo_prover/crates/prover/src/cairo_air/opcodes_air.rs
line 1693 at r6 (raw file):
Previously, shaharsamocha7 wrote…
:( x2
:O
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 r7, all commit messages.
Reviewable status: complete! all files reviewed, all discussions resolved (waiting on @ohad-starkware)
93f391a
to
d34ad72
Compare
03d1215
to
598e1c6
Compare
598e1c6
to
98995d4
Compare
This change is