Skip to content

Commit

Permalink
Merge pull request #197 from JuliaMath/kc/path_compile_time
Browse files Browse the repository at this point in the history
prevent to library from being serialized at precompile time
  • Loading branch information
staticfloat authored Apr 19, 2021
2 parents 53fe689 + 8320c0a commit 3d69222
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fft.jl
Original file line number Diff line number Diff line change
Expand Up @@ -552,8 +552,8 @@ end

# low-level FFTWPlan creation (for internal use in FFTW module)

for (Tr,Tc,fftw,lib) in ((:Float64,:(Complex{Float64}),"fftw",libfftw3),
(:Float32,:(Complex{Float32}),"fftwf",libfftw3f))
for (Tr,Tc,fftw,lib) in ((:Float64,:(Complex{Float64}),"fftw",:libfftw3),
(:Float32,:(Complex{Float32}),"fftwf",:libfftw3f))
@eval @exclusive function cFFTWPlan{$Tc,K,inplace,N}(X::StridedArray{$Tc,N},
Y::StridedArray{$Tc,N},
region, flags::Integer, timelimit::Real) where {K,inplace,N}
Expand Down

0 comments on commit 3d69222

Please sign in to comment.