Skip to content

Commit 70b53f1

Browse files
committed
Increment the timeout of warmup benchmarks.
1 parent 466e273 commit 70b53f1

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

espresso/ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@
5656
common.jdk8_on_demand_linux + common.espresso_minheap_benchmark('jvm-ce', 'awfy:*', 'infinite-overhead') + {name: 'ondemand-bench-espresso-jvm-ce-awfy-minheap-infinite-ovh-jdk8-linux-amd64'},
5757
common.jdk8_on_demand_bench_linux + common.espresso_minheap_benchmark('jvm-ce', 'awfy:*', '1.5-overhead') + {name: 'ondemand-bench-espresso-jvm-ce-awfy-minheap-1.5-ovh-jdk8-linux-amd64'},
5858
]
59-
}
59+
}

espresso/ci_common/common.jsonnet

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ local benchmark_suites = ['dacapo', 'renaissance', 'scala-dacapo'];
170170
name: name,
171171
},
172172

173-
espresso_benchmark(env, suite, host_jvm=_host_jvm(env), host_jvm_config=_host_jvm_config(env), guest_jvm='espresso', guest_jvm_config='default', fork_file=null, extra_args=[]):
173+
espresso_benchmark(env, suite, host_jvm=_host_jvm(env), host_jvm_config=_host_jvm_config(env), guest_jvm='espresso', guest_jvm_config='default', fork_file=null, extra_args=[], timelimit='3:00:00'):
174174
self.build_espresso(env) +
175175
{
176176
run+: that.maybe_set_ld_debug_flag(env) + [
@@ -184,7 +184,7 @@ local benchmark_suites = ['dacapo', 'renaissance', 'scala-dacapo'];
184184
'--vm.Xss32m'] + extra_args
185185
),
186186
],
187-
timelimit: '3:00:00',
187+
timelimit: timelimit,
188188
} +
189189
self.bench_upload,
190190

@@ -201,7 +201,8 @@ local benchmark_suites = ['dacapo', 'renaissance', 'scala-dacapo'];
201201
host_jvm=_host_jvm(env), host_jvm_config=_host_jvm_config(env),
202202
guest_jvm='espresso', guest_jvm_config=guest_jvm_config,
203203
fork_file='ci_common/scala-dacapo-warmup-forks.json',
204-
extra_args=extra_args
204+
extra_args=extra_args,
205+
timelimit='5:00:00'
205206
),
206207

207208
graal_benchmark(env, suite, host_jvm='server', host_jvm_config=_graal_host_jvm_config(env), extra_args=[]):

0 commit comments

Comments
 (0)