Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/Documenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
shell: julia --project=docs --color=yes {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
- uses: julia-actions/julia-buildpkg@v1
- run: julia --project=docs docs/make.jl
Expand Down
5 changes: 4 additions & 1 deletion docs/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,8 @@
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

[sources]
AbstractFFTs = { path = ".." }

[compat]
Documenter = "~0.25"
Documenter = "^1"
6 changes: 3 additions & 3 deletions src/definitions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,9 @@ struct AdjointPlan{T,P<:Plan} <: Plan{T}
AdjointPlan{T,P}(p) where {T,P} = new(p)
end

# We eagerly form the plan inverse in the adjoint(p) call, which will be cached for subsequent calls.
# This is reasonable, as inv(p) would do the same, and necessary in order to compute the correct input
# type for the adjoint plan and encode it in its type.
"""
(p::Plan)'
adjoint(p::Plan)
Expand All @@ -659,9 +662,6 @@ Return a plan that performs the adjoint operation of the original plan.
Adjoint plans do not currently support `LinearAlgebra.mul!`. Further, as a new addition to `AbstractFFTs`,
coverage of `Base.adjoint` in downstream implementations may be limited.
"""
# We eagerly form the plan inverse in the adjoint(p) call, which will be cached for subsequent calls.
# This is reasonable, as inv(p) would do the same, and necessary in order to compute the correct input
# type for the adjoint plan and encode it in its type.
Base.adjoint(p::Plan{T}) where {T} = AdjointPlan{eltype(inv(p)), typeof(p)}(p)
Base.adjoint(p::AdjointPlan) = p.p
# always have AdjointPlan inside ScaledPlan.
Expand Down
Loading