Skip to content

Commit ba87263

Browse files
committed
fftw_vendor -> fftw_provider
1 parent f60cfa3 commit ba87263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util_fft.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ m_irfft!(dst, arr::AbstractArray{Complex{T},N}, dims) where {T,N} = ldiv!(dst, m
2929
end
3030
# FFTW (but not MKL) destroys the input array for inplace inverse real
3131
# 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
32+
copy_if_fftw(x) = FFTW.fftw_provider==:fftw ? copy(x) : x
3333

3434

3535
"""

0 commit comments

Comments
 (0)