Skip to content

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

Open
@ValarDragon

Description

@ValarDragon

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions