-
Notifications
You must be signed in to change notification settings - Fork 79
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
Optimized lookup combine #765
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## dev #765 +/- ##
==========================================
+ Coverage 93.27% 93.34% +0.07%
==========================================
Files 89 89
Lines 11948 11957 +9
Branches 11948 11957 +9
==========================================
+ Hits 11144 11161 +17
+ Misses 703 695 -8
Partials 101 101 ☔ View full report in Codecov by Sentry. |
9a159ef
to
b626dfe
Compare
7fad3c5
to
5af79fa
Compare
b626dfe
to
ec26845
Compare
5af79fa
to
db98a63
Compare
ec26845
to
a7c55cf
Compare
db98a63
to
c28ed04
Compare
a7c55cf
to
ef28f0e
Compare
c28ed04
to
786d728
Compare
ef28f0e
to
b81221b
Compare
786d728
to
17e294d
Compare
b81221b
to
6aee677
Compare
17e294d
to
87a136c
Compare
cb2b625
to
73ba6c4
Compare
87a136c
to
a27e12e
Compare
73ba6c4
to
89854bb
Compare
a27e12e
to
d3fe674
Compare
d3fe674
to
fe41cc2
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 2 of 9 files at r2, 7 of 7 files at r3, 1 of 1 files at r4, all commit messages.
Reviewable status: all files reviewed, 3 unresolved discussions (waiting on @spapinistarkware)
crates/prover/src/constraint_framework/logup.rs
line 118 at r4 (raw file):
pub alpha: SecureField, /// Precomputed powers of alpha. powers: Vec<SecureField>,
Rename
Suggestion:
alpha_powers: Vec<SecureField>,
crates/prover/src/constraint_framework/logup.rs
line 121 at r4 (raw file):
} impl LookupElements { pub fn draw(channel: &mut Blake2sChannel, n_powers: usize) -> Self {
Rename
Suggestion:
n_alpha_powers: usize
crates/prover/src/examples/poseidon/mod.rs
line 371 at r4 (raw file):
span.exit(); // Draw lookup element.
non-blocking
Suggestion:
// Draw lookup elements.
fe41cc2
to
4351076
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: 8 of 10 files reviewed, 2 unresolved discussions (waiting on @shaharsamocha7)
crates/prover/src/constraint_framework/logup.rs
line 118 at r4 (raw file):
Previously, shaharsamocha7 wrote…
Rename
Done.
crates/prover/src/constraint_framework/logup.rs
line 121 at r4 (raw file):
Previously, shaharsamocha7 wrote…
Rename
This goes away next PR, and I'd ike to avoid conflicts:)
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 2 files at r5.
Reviewable status: 9 of 10 files reviewed, all discussions resolved (waiting on @spapinistarkware)
This change is