Commit 24ee28c3 authored by Antoine Kaufmann's avatar Antoine Kaufmann
Browse files

experiments: fix memory check in parallel runtime

parent bc75fa1d
......@@ -90,7 +90,7 @@ class LocalParallelRuntime(Runtime):
enough_cores = True
if self.mem is not None:
enough_mem = (self.mem - self.cores_used) >= exp.resreq_cores()
enough_mem = (self.mem - self.mem_used) >= exp.resreq_mem()
else:
enough_mem = True
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment