You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've checked four versions v1.1.1, v1.2.4, v1.3.2 and v1.4.5. It turns out that v1.2.4 is the first version among these that I find such regression.
Julia Version 1.7.0-rc2
Commit f23fc0d27a (2021-10-2012:45 UTC)
Platform Info:
OS: macOS (x86_64-apple-darwin19.5.0)
CPU:Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz
WORD_SIZE:64
LIBM: libopenlibm
LLVM: libLLVM-12.0.1 (ORCJIT, skylake)
Environment:
JULIA_NUM_THREADS =8
using FFTW
using BenchmarkTools
using ProgressMeter
records =Dict{DataType, Vector{Float64}}()
type_list = (ComplexF32, ComplexF64, Float32, Float64)
size_list = (32, 64, 128, 256, 512, 1024)
p =Progress(length(type_list)*length(size_list))
for T in type_list
records[T] = Float64[]
for sz in size_list
@info"benchmark" T size=sz
X =rand(T, sz, sz)
push!(records[T], @belapsedfft($X))
ProgressMeter.next!(p)
endend
full data
version,eltype,size,time (s)
1.4.5,ComplexF32,32,2.0006e-51.4.5,ComplexF32,64,2.6791e-51.4.5,ComplexF32,128,8.3809e-51.4.5,ComplexF32,256,0.0008462111.4.5,ComplexF32,512,0.003690631.4.5,ComplexF32,1024,0.01557971.4.5,ComplexF64,32,2.1886e-51.4.5,ComplexF64,64,4.1119e-51.4.5,ComplexF64,128,0.0001497661.4.5,ComplexF64,256,0.0007983041.4.5,ComplexF64,512,0.003851861.4.5,ComplexF64,1024,0.01746381.4.5,Float64,32,2.3493e-51.4.5,Float64,64,5.0737e-51.4.5,Float64,128,0.0001849531.4.5,Float64,256,0.001004071.4.5,Float64,512,0.004184981.4.5,Float64,1024,0.01955111.4.5,Float32,32,2.0973e-51.4.5,Float32,64,3.2219e-51.4.5,Float32,128,0.0001077941.4.5,Float32,256,0.0008953171.4.5,Float32,512,0.004019131.4.5,Float32,1024,0.0183689
The text was updated successfully, but these errors were encountered:
I've checked four versions v1.1.1, v1.2.4, v1.3.2 and v1.4.5. It turns out that v1.2.4 is the first version among these that I find such regression.
full data
The text was updated successfully, but these errors were encountered: