From f08b17298d844e6df49bbd0a018496c192ba8a88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Wed, 29 Nov 2017 17:29:10 +0100 Subject: [PATCH] Raise memory limit by 1024 MB We noticed that when using a 8192 MB memory limit, Madagascar frequently surpasses this limit. This is probably due to a difference in how the memory consumption is measured in the benchmark runner and Madagascar. For this reason, this commit raises the memory limit by a tolerance margin of 1024 MB. --- config.example.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.example.yml b/config.example.yml index 523afe6cf..4bf749303 100644 --- a/config.example.yml +++ b/config.example.yml @@ -47,4 +47,4 @@ limits: # time limit per instance in seconds time: 900 # memory limit per instance in kilobytes - memory: 8000000 + memory: 9216000 # 8192 MB memory limit + 1024 MB tolerance margin