PySR / benchmark.jl
MilesCranmer's picture
Benchmark median time
12bc552
raw
history blame
267 Bytes
include("paralleleureqa.jl")
using BenchmarkTools
t = @benchmark(fullRun(3,
npop=100,
annealing=true,
ncyclesperiteration=100,
fractionReplaced=0.1f0,
verbosity=0
), evals=5)
println("The median time is $(median(t))")