Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ycai
simbricks
Commits
4ec6f8d6
Commit
4ec6f8d6
authored
Jan 18, 2025
by
Jonas Kaufmann
Browse files
symphony/orchestration/simulation/host.py: reduce required memory for gem5 and QEMU to 1 GB
parent
26a56993
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
symphony/orchestration/simbricks/orchestration/simulation/host.py
.../orchestration/simbricks/orchestration/simulation/host.py
+2
-2
No files found.
symphony/orchestration/simbricks/orchestration/simulation/host.py
View file @
4ec6f8d6
...
...
@@ -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"
]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment