-
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
Implement from_qm31_array for QM31. #679
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #679 +/- ##
=======================================
Coverage 90.28% 90.28%
=======================================
Files 75 75
Lines 10013 10013
Branches 10013 10013
=======================================
Hits 9040 9040
Misses 892 892
Partials 81 81 ☔ View full report in Codecov by Sentry. |
5602db4
to
9d0bec0
Compare
275858e
to
b62097b
Compare
9d0bec0
to
8257e32
Compare
b62097b
to
8529f55
Compare
fc63560
to
47fb3f1
Compare
8529f55
to
f12a4c8
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 5 of 5 files at r1, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @alonh5)
crates/prover/src/core/fields/qm31.rs
line 47 at r1 (raw file):
/// Returns the combined value, given the values of its composing base field polynomials at that /// point. pub fn from_qm31_array(evals: [Self; SECURE_EXTENSION_DEGREE]) -> Self {
Actually I don't like this name.
from_array sound as it just trivially pack them, but this is doing something else
WDYT?
Code quote:
pub fn from_qm31_array
47fb3f1
to
ee8f106
Compare
f12a4c8
to
75b43ee
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: all files reviewed, 1 unresolved discussion (waiting on @shaharsamocha7)
crates/prover/src/core/fields/qm31.rs
line 47 at r1 (raw file):
Previously, shaharsamocha7 wrote…
Actually I don't like this name.
from_array sound as it just trivially pack them, but this is doing something elseWDYT?
Changed the name, wdyt?
ee8f106
to
a0ba183
Compare
75b43ee
to
a51f928
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 5 of 5 files at r2, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @alonh5)
crates/prover/src/core/fields/qm31.rs
line 47 at r1 (raw file):
Previously, alonh5 (Alon Haramati) wrote…
Changed the name, wdyt?
maybe from_partial_evals
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 @alonh5)
a51f928
to
32defad
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 4 of 4 files at r3, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @alonh5)
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: complete! all files reviewed, all discussions resolved (waiting on @alonh5)
a0ba183
to
89129d0
Compare
32defad
to
1665b10
Compare
89129d0
to
5839c99
Compare
1665b10
to
1d1b46c
Compare
5839c99
to
69c7e59
Compare
1d1b46c
to
5c8c89d
Compare
This change is