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 43c2769 commit 3b49c80Copy full SHA for 3b49c80
src/fft.jl
@@ -514,8 +514,8 @@ unsafe_execute!(plan::r2rFFTWPlan{T},
514
515
# Compute dims and howmany for FFTW guru planner
516
function dims_howmany(X::StridedArray, Y::StridedArray,
517
- sz::Array{Int,1}, region)
518
- reg = Int[region...]
+ sz::Vector{Int}, region)
+ reg = Int[region...]::Vector{Int}
519
if length(unique(reg)) < length(reg)
520
throw(ArgumentError("each dimension can be transformed at most once"))
521
end
0 commit comments