Skip to content

Commit

Permalink
dct plan
Browse files Browse the repository at this point in the history
  • Loading branch information
daanhb committed Mar 15, 2023
1 parent 34f241c commit a8cbd45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bases/fourier/fouriertransforms.jl
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ end
# adjoint and inv.
const DCTII_PLAN{T} = FFTW.DCTPlan{T,5,true} where {T}
const INV_DCTII_PLAN{T} = FFTW.DCTPlan{T,4,true} where {T}
const DCTI_PLAN{T} = FFTW.r2rFFTWPlan{T,(3,),true,1} where {T}
const DCTI_PLAN{T} = FFTW.r2rFFTWPlan{T,K,true,1} where {T,K}

const DCTPLANS = Union{DCTII_PLAN,INV_DCTII_PLAN,DCTI_PLAN}

Expand Down
2 changes: 1 addition & 1 deletion src/operator/solvers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ end
# coef_dest[:] = ldiv!(solver, coef_dest)
# end

adjoint(op::GenericSolverOperator) = @warn("not implemented")
adjoint(op::GenericSolverOperator) = error("adjoint not implemented for $(op)")

if VERSION v"1.7-"
qr_factorization(op::DictionaryOperator) = qr(matrix(op), ColumnNorm())
Expand Down

2 comments on commit a8cbd45

@daanhb
Copy link
Member Author

@daanhb daanhb commented on a8cbd45 Mar 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/79639

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.5.11 -m "<description of version>" a8cbd455abea5f1978eacb19f3c21e247494d1a6
git push origin v0.5.11

Please sign in to comment.