Skip to content

Commit

Permalink
Update docs/src/implementations.md
Browse files Browse the repository at this point in the history
Co-authored-by: Seth Axen <seth@sethaxen.com>
  • Loading branch information
vpuri3 and sethaxen authored Jul 4, 2023
1 parent c332e89 commit e29f286
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/implementations.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ To define a new FFT implementation in your own module, you should

* To enable automatic computation of adjoint plans via [`Base.adjoint`](@ref) (used in rules for reverse-mode differentiation), define the trait `AbstractFFTs.ProjectionStyle(::MyPlan)`, which can take values:
* `AbstractFFTs.NoProjectionStyle()`,
* `AbstractFFTs.RealProjectionStyle()`, for plans which halve one of the output's dimensions analogously to [`rfft`](@ref),
* `AbstractFFTs.RealProjectionStyle()`, for plans that halve one of the output's dimensions analogously to [`rfft`](@ref),
* `AbstractFFTs.RealInverseProjectionStyle(d::Int)`, for plans which expect an input with a halved dimension analogously to [`irfft`](@ref), where `d` is the original length of the dimension.

The normalization convention for your FFT should be that it computes yₖ = ∑ⱼ xⱼ exp(-2πi jk/n) for a transform of
Expand Down

0 comments on commit e29f286

Please sign in to comment.