-
Notifications
You must be signed in to change notification settings - Fork 231
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
feat: impl Radix2DitParallel
#441
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ashjeong
force-pushed
the
feat/impl-radix2ditparallel
branch
3 times, most recently
from
June 18, 2024 04:09
b074fe5
to
a660cf2
Compare
chokobole
reviewed
Jun 18, 2024
ashjeong
force-pushed
the
feat/impl-radix2ditparallel
branch
8 times, most recently
from
June 21, 2024 01:05
ab44034
to
6d1d7ba
Compare
ashjeong
force-pushed
the
feat/impl-radix2ditparallel
branch
from
June 21, 2024 01:24
6d1d7ba
to
750e846
Compare
chokobole
reviewed
Jun 21, 2024
ashjeong
force-pushed
the
feat/impl-radix2ditparallel
branch
from
June 21, 2024 03:12
750e846
to
c330729
Compare
fakedev9999
reviewed
Jun 21, 2024
tachyon/math/polynomials/univariate/radix2_evaluation_domain_unittest.cc
Outdated
Show resolved
Hide resolved
fakedev9999
reviewed
Jun 24, 2024
ashjeong
force-pushed
the
feat/impl-radix2ditparallel
branch
3 times, most recently
from
June 24, 2024 02:17
af9eb3e
to
52a1b3b
Compare
dongchangYoo
requested changes
Jun 24, 2024
tachyon/math/polynomials/univariate/univariate_evaluation_domain.h
Outdated
Show resolved
Hide resolved
fakedev9999
reviewed
Jun 24, 2024
fakedev9999
reviewed
Jun 24, 2024
fakedev9999
reviewed
Jun 24, 2024
fakedev9999
reviewed
Jun 24, 2024
ashjeong
force-pushed
the
feat/impl-radix2ditparallel
branch
2 times, most recently
from
June 27, 2024 07:57
54d2afc
to
5077b5f
Compare
dongchangYoo
approved these changes
Jun 27, 2024
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.
LGTM
ashjeong
force-pushed
the
feat/impl-radix2ditparallel
branch
2 times, most recently
from
June 27, 2024 08:05
0ff99dc
to
d5c5cdc
Compare
ashjeong
force-pushed
the
feat/impl-radix2ditparallel
branch
from
June 27, 2024 08:10
d5c5cdc
to
4cc0ac3
Compare
chokobole
reviewed
Jun 27, 2024
tachyon/math/polynomials/univariate/mixed_radix_evaluation_domain.h
Outdated
Show resolved
Hide resolved
chokobole
reviewed
Jun 27, 2024
…eField` For `BabyBear`, `KoalaBear`, `Mersenne31`
…on_domain.h` [`Radix2DitParallel`](https://github.com/Plonky3/Plonky3/blob/main/dft/src/radix_2_dit_parallel.rs) [`ReverseSliceIndexBits`](https://github.com/Plonky3/Plonky3/blob/33b94a8ebaf8fbaace3def6e792cba0dd97b3c42/util/src/lib.rs#L70-L83) [Butterfly Function](https://github.com/Plonky3/Plonky3/blob/33b94a8ebaf8fbaace3def6e792cba0dd97b3c42/dft/src/butterflies.rs)
ashjeong
force-pushed
the
feat/impl-radix2ditparallel
branch
2 times, most recently
from
June 27, 2024 09:05
07634b5
to
7faf0ac
Compare
ashjeong
force-pushed
the
feat/impl-radix2ditparallel
branch
from
June 27, 2024 09:20
7faf0ac
to
fa4c33f
Compare
fakedev9999
approved these changes
Jun 27, 2024
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.
LGTM
chokobole
approved these changes
Jun 27, 2024
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.
LGTM
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
In preparation for sp1, this PR implements
Radix2DitParallel
and its related testing.