"git@developer.sourcefind.cn:modelzoo/resnet50_tensorflow.git" did not exist on "9ca835b8ffa6b39a03c11577d130426af6f5f776"
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): ...@@ -84,7 +84,7 @@ class Gem5Sim(HostSim):
return 1 return 1
def resreq_mem(self) -> int: def resreq_mem(self) -> int:
return 4096 return 1024
def supported_image_formats(self) -> list[str]: def supported_image_formats(self) -> list[str]:
return ["raw"] return ["raw"]
...@@ -239,7 +239,7 @@ class QemuSim(HostSim): ...@@ -239,7 +239,7 @@ class QemuSim(HostSim):
return 1 return 1
def resreq_mem(self) -> int: def resreq_mem(self) -> int:
return 8192 return 1024
def supported_image_formats(self) -> list[str]: def supported_image_formats(self) -> list[str]:
return ["raw", "qcow"] 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