We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dc2eef commit 0415b2aCopy full SHA for 0415b2a
test/bench_simplify.jl
@@ -5,7 +5,7 @@ SIMPLE = false
5
T_REF = 48.0 # AMD Ryzen 7840U, Julia 1.11, no sys image [s]
6
# 37s with sys image
7
if VERSION.minor==12
8
- T_REF /= 0.85 # Julia 1.12 is about 15% slower on AMD Ryzen 7 7840U
+ T_REF /= 0.70 # Julia 1.12 is about 30% slower on AMD Ryzen 7 7840U
9
end
10
if Sys.iswindows()
11
T_REF /= 0.75 # Windows is about 25% slower than Linux on same hardware
@@ -85,7 +85,7 @@ function run_benchmark_subprocess()
85
relp = NaN
86
msg = nothing
87
try
88
- result = run(`julia --project=. $temp_script`)
+ result = run(`julia --project -t 1 $temp_script`)
89
if result.exitcode == 0 && isfile(results_file)
90
lines = readlines(results_file)
91
time_ = parse(Float64, lines[1])
0 commit comments