We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eadb9e9 commit 65022c6Copy full SHA for 65022c6
1 file changed
src/tools/eval_server.rs
@@ -300,6 +300,8 @@ async fn evaluate(
300
if let Some(comp_group) = dag.data.execution_groups.get_mut(&cuuid) {
301
for exec in &mut comp_group.executions {
302
exec.limits.cpu_time(state.opt.compilation_time_limit);
303
+ exec.limits
304
+ .wall_time(state.opt.compilation_time_limit * 2.0);
305
exec.limits
306
.memory(state.opt.compilation_memory_limit * 1024);
307
}
@@ -332,6 +334,8 @@ async fn evaluate(
332
334
333
335
336
.cpu_time(payload.time_limit.unwrap_or(state.opt.max_time_limit));
337
338
+ .wall_time(payload.time_limit.unwrap_or(state.opt.max_time_limit) * 2.0);
339
340
.memory(payload.memory_limit.unwrap_or(state.opt.max_memory_limit) * 1024);
341
0 commit comments