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 f60cfa3 commit ba87263Copy full SHA for ba87263
src/util_fft.jl
@@ -29,7 +29,7 @@ m_irfft!(dst, arr::AbstractArray{Complex{T},N}, dims) where {T,N} = ldiv!(dst, m
29
end
30
# FFTW (but not MKL) destroys the input array for inplace inverse real
31
# FFTs, so we need a copy. see https://github.com/JuliaMath/FFTW.jl/issues/158
32
-copy_if_fftw(x) = FFTW.fftw_vendor==:fftw ? copy(x) : x
+copy_if_fftw(x) = FFTW.fftw_provider==:fftw ? copy(x) : x
33
34
35
"""
0 commit comments