-
Notifications
You must be signed in to change notification settings - Fork 82
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
Formal Expr logup variables. #887
base: alont/generalize-gen-interaction-trace2
Are you sure you want to change the base?
Formal Expr logup variables. #887
Conversation
Warning This pull request is not mergeable via GitHub because a downstack PR is open. Once all requirements are satisfied, merge this PR as a stack on Graphite.
This stack of pull requests is managed by Graphite. Learn more about stacking. |
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 2 files reviewed, 5 unresolved discussions (waiting on @Alon-Ti)
crates/prover/src/constraint_framework/expr.rs
line 30 at r1 (raw file):
SecureCol([Box<Expr>; 4]), Const(BaseField), Var(String),
consider to rename
Suggestion:
ExternalVar(String),
crates/prover/src/constraint_framework/expr.rs
line 30 at r1 (raw file):
SecureCol([Box<Expr>; 4]), Const(BaseField), Var(String),
Should it also help with preprocessed columns?
Document
Code quote:
Var(String),
crates/prover/src/constraint_framework/expr.rs
line 155 at r1 (raw file):
let z = Expr::Var(relation.get_name().to_owned() + "_z"); let alpha_powers = (0..relation.get_size()) .map(|i| Expr::Var(relation.get_name().to_owned() + "_alpha" + &i.to_string()));
Can you put those strings as consts in the top of the function?
Suggestion:
"_alpha", "z"
crates/prover/src/constraint_framework/expr.rs
line 232 at r1 (raw file):
values, }| { Fraction::new(multiplicity.clone(), combine_formal(*relation, values))
Can't it use the default impl for add_to_relation?
this is because the combine_formal?
Code quote:
Fraction::new(multiplicity.clone(), combine_formal(*relation, values))
crates/prover/src/constraint_framework/expr.rs
line 333 at r1 (raw file):
interaction: 2, idx: 5, offset: 18446744073709551615
Why we got this nubmer? (1 << 64)
Code quote:
offset: 18446744073709551615
7d3d676
to
68b27b7
Compare
059b0f4
to
4cdfe97
Compare
68b27b7
to
599a366
Compare
4cdfe97
to
4f5955b
Compare
599a366
to
cf2af5f
Compare
b8d7a09
to
2601e11
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 2 files reviewed, 5 unresolved discussions (waiting on @shaharsamocha7)
crates/prover/src/constraint_framework/expr.rs
line 30 at r1 (raw file):
Previously, shaharsamocha7 wrote…
consider to rename
Param
?
crates/prover/src/constraint_framework/expr.rs
line 30 at r1 (raw file):
Previously, shaharsamocha7 wrote…
Should it also help with preprocessed columns?
Document
Preprocessed columns are just columns that exist in the trace, I think the expr evaluator doesn't care how they're generated and who has access to them, at least until we have named columns in general.
crates/prover/src/constraint_framework/expr.rs
line 155 at r1 (raw file):
Previously, shaharsamocha7 wrote…
Can you put those strings as consts in the top of the function?
Done.
crates/prover/src/constraint_framework/expr.rs
line 232 at r1 (raw file):
Previously, shaharsamocha7 wrote…
Can't it use the default impl for add_to_relation?
this is because the combine_formal?
Yes. combine
is a property of the relation itself, so it can't vary by evaluator.
crates/prover/src/constraint_framework/expr.rs
line 333 at r1 (raw file):
Previously, shaharsamocha7 wrote…
Why we got this nubmer? (1 << 64)
Done.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## alont/generalize-gen-interaction-trace2 #887 +/- ##
===========================================================================
+ Coverage 91.61% 91.85% +0.24%
===========================================================================
Files 93 93
Lines 12901 13053 +152
Branches 12901 13053 +152
===========================================================================
+ Hits 11819 11990 +171
+ Misses 967 948 -19
Partials 115 115 ☔ View full report in Codecov by Sentry. |
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.
⚠️ Performance Alert ⚠️
Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2
.
Benchmark suite | Current: a61816c | Previous: f6214d1 | Ratio |
---|---|---|---|
merkle throughput/simd merkle |
30647662 ns/iter (± 485612 ) |
14690867 ns/iter (± 434150 ) |
2.09 |
This comment was automatically generated by workflow using github-action-benchmark.
CC: @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 2 of 2 files at r2, all commit messages.
Reviewable status: all files reviewed, 2 unresolved discussions (waiting on @Alon-Ti)
crates/prover/src/constraint_framework/expr.rs
line 30 at r1 (raw file):
Previously, Alon-Ti wrote…
Preprocessed columns are just columns that exist in the trace, I think the expr evaluator doesn't care how they're generated and who has access to them, at least until we have named columns in general.
so it should access them by index same as any other column?
crates/prover/src/constraint_framework/expr.rs
line 30 at r2 (raw file):
SecureCol([Box<Expr>; 4]), Const(BaseField), /// A parameter external to the AIR, for example the interaction elements of a relation.
why is it called external?
Suggestion:
/// External parameter to the AIR, for example the interaction elements of a relation.
2601e11
to
a61816c
Compare
52d362d
to
92fe59a
Compare
a61816c
to
db26f4c
Compare
No description provided.