-
Notifications
You must be signed in to change notification settings - Fork 93
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
Use PackedBaseField in avx fft #455
Use PackedBaseField in avx fft #455
Conversation
Your org has enabled the Graphite merge queue for merging into devAdd the label “merge-queue” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. You must have a Graphite account in order to use the merge queue. Sign up using this link. |
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @spapinistarkware and the rest of your teammates on Graphite |
a08a2e9
to
1768412
Compare
document. condiser functions. Code quote: permute_with |
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 4 files at r1, all commit messages.
Reviewable status: 2 of 4 files reviewed, 1 unresolved discussion (waiting on @spapinistarkware)
1768412
to
2af81cb
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 4 files reviewed, 1 unresolved discussion (waiting on @ilyalesokhin-starkware)
src/core/backend/avx512/m31.rs
line 41 at r2 (raw file):
Previously, ilyalesokhin-starkware wrote…
document.
condiser
adding
interleave_lower_halfs
and
interleave_upper_halfsfunctions.
Done.
Previously, spapinistarkware (Shahar Papini) wrote…
you didn't document permute_with, tough I guess it is no longer used. |
2af81cb
to
078632b
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 4 files reviewed, all discussions resolved (waiting on @ilyalesokhin-starkware)
src/core/backend/avx512/m31.rs
line 41 at r2 (raw file):
Previously, ilyalesokhin-starkware wrote…
you didn't document permute_with, tough I guess it is no longer used.
Sorry, meant to delete it.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## dev #455 +/- ##
==========================================
- Coverage 96.05% 96.04% -0.02%
==========================================
Files 55 55
Lines 8536 8512 -24
Branches 8536 8512 -24
==========================================
- Hits 8199 8175 -24
Misses 289 289
Partials 48 48 ☔ 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.
Reviewed 4 of 4 files at r3, 4 of 4 files at r4.
Reviewable status: all files reviewed (commit messages unreviewed), all discussions resolved (waiting on @spapinistarkware)
Merge activity
|
<!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/starkware-libs/stwo/455) <!-- Reviewable:end -->
078632b
to
0d4ebb5
Compare
where is the permutation? Code quote: // Apply the permutation, resulting in indexing a:bcid. |
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 (commit messages unreviewed), 1 unresolved discussion
src/core/backend/avx512/fft/ifft.rs
line 369 at r3 (raw file):
Previously, ilyalesokhin-starkware wrote…
where is the permutation?
Look above, it's
// At each layer we apply the following permutation to the index:
// i:abcd => d:iabc
Suggestion: // At each layer, we interleave the registers which applies the following permutation to the index: |
This change is