Commit 4ec6f8d6 authored by Jonas Kaufmann's avatar Jonas Kaufmann
Browse files

symphony/orchestration/simulation/host.py: reduce required memory for gem5 and QEMU to 1 GB

parent 26a56993
......@@ -84,7 +84,7 @@ class Gem5Sim(HostSim):
return 1
def resreq_mem(self) -> int:
return 4096
return 1024
def supported_image_formats(self) -> list[str]:
return ["raw"]
......@@ -239,7 +239,7 @@ class QemuSim(HostSim):
return 1
def resreq_mem(self) -> int:
return 8192
return 1024
def supported_image_formats(self) -> list[str]:
return ["raw", "qcow"]
......
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