We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 552d49f commit 1e9ece2Copy full SHA for 1e9ece2
src/definitions.jl
@@ -608,7 +608,8 @@ the original plan. Note that this differs from the corresponding backwards plan
608
FFTs due to the halving of one of the dimensions of the FFT output, as described in [`rfft`](@ref).
609
610
!!! note
611
- Adjoint plans do not currently support `LinearAlgebra.mul!`.
+ Adjoint plans do not currently support `LinearAlgebra.mul!`. Further, as a new addition to `AbstractFFTs`,
612
+ coverage of `Base.adjoint` in downstream implementations may be limited.
613
"""
614
Base.adjoint(p::Plan{T}) where {T} = AdjointPlan{T, typeof(p)}(p)
615
Base.adjoint(p::AdjointPlan) = p.p
0 commit comments