Skip to content

Commit 0415b2a

Browse files
committed
Relax limit for Julia 1.12
1 parent 6dc2eef commit 0415b2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/bench_simplify.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SIMPLE = false
55
T_REF = 48.0 # AMD Ryzen 7840U, Julia 1.11, no sys image [s]
66
# 37s with sys image
77
if VERSION.minor==12
8-
T_REF /= 0.85 # Julia 1.12 is about 15% slower on AMD Ryzen 7 7840U
8+
T_REF /= 0.70 # Julia 1.12 is about 30% slower on AMD Ryzen 7 7840U
99
end
1010
if Sys.iswindows()
1111
T_REF /= 0.75 # Windows is about 25% slower than Linux on same hardware
@@ -85,7 +85,7 @@ function run_benchmark_subprocess()
8585
relp = NaN
8686
msg = nothing
8787
try
88-
result = run(`julia --project=. $temp_script`)
88+
result = run(`julia --project -t 1 $temp_script`)
8989
if result.exitcode == 0 && isfile(results_file)
9090
lines = readlines(results_file)
9191
time_ = parse(Float64, lines[1])

0 commit comments

Comments
 (0)