Skip to content
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

basic radix 2 coset IFFT: combine multiply by coset and multiply by constant #11

Open
ValarDragon opened this issue Jul 22, 2019 · 0 comments

Comments

@ValarDragon
Copy link
Member

For a coset of size L, the coset IFFT does an extra L multiplications at the moment (in exchange for better abstraction)

The basic radix 2 coset IFFT does the normal IFFT, and then multiplies the coefficients of the polynomial by powers of the coset offset. The normal IFFT at the end multiplies every element of the polynomial by a constant. These multiplications can be merged.

The multiply by coset procedure essentially computes offset, offset^2, offset^3 ..., by just multiplying the previous term by offset. In the coset IFFT, you really want to compute k*offset, k*offset^2, ..., which can be done by just multiplying the first term by the constant, and then proceeding as before.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant