Skip to content

Commit 3d69222

Browse files
authored
Merge pull request #197 from JuliaMath/kc/path_compile_time
prevent to library from being serialized at precompile time
2 parents 53fe689 + 8320c0a commit 3d69222

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fft.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -552,8 +552,8 @@ end
552552

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

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

0 commit comments

Comments
 (0)