Skip to content

Commit 06f8b91

Browse files
committed
Remove mul! method from inplace test plan (consistent with fftw)
1 parent 09d8383 commit 06f8b91

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

test/TestPlans.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -272,9 +272,6 @@ function AbstractFFTs.plan_bfft!(x::AbstractArray, region; kwargs...)
272272
return InplaceTestPlan(plan_bfft(x, region; kwargs...))
273273
end
274274

275-
function LinearAlgebra.mul!(y::AbstractArray, p::InplaceTestPlan, x::AbstractArray)
276-
return copyto!(y, p.plan * x)
277-
end
278275
Base.:*(p::InplaceTestPlan, x::AbstractArray) = copyto!(x, p.plan * x)
279276

280277
AbstractFFTs.plan_inv(p::InplaceTestPlan) = InplaceTestPlan(AbstractFFTs.plan_inv(p.plan))

0 commit comments

Comments
 (0)