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
7e9743de
Unverified
Commit
7e9743de
authored
Dec 11, 2024
by
Antoine Kaufmann
Browse files
symphony/orchestration: helpers for simple sim and inst
parent
be8fda17
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
64 additions
and
0 deletions
+64
-0
symphony/orchestration/simbricks/orchestration/helpers/instantiation.py
...stration/simbricks/orchestration/helpers/instantiation.py
+35
-0
symphony/orchestration/simbricks/orchestration/helpers/simulation.py
...chestration/simbricks/orchestration/helpers/simulation.py
+29
-0
No files found.
symphony/orchestration/simbricks/orchestration/helpers/instantiation.py
0 → 100644
View file @
7e9743de
# Copyright 2024 Max Planck Institute for Software Systems, and
# National University of Singapore
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
from
simbricks.orchestration
import
system
from
simbricks.orchestration.simulation
import
base
as
sim_base
from
simbricks.orchestration.simulation
import
channel
as
sim_chan
from
simbricks.orchestration.instantiation
import
base
as
inst_base
from
simbricks.utils
import
base
as
utils_base
def
simple_instantiation
(
simulation
:
sim_base
.
Simulation
,
)
->
inst_base
.
Instantiation
:
instance
=
inst_base
.
Instantiation
(
sim
=
simulation
)
instance
.
preserve_tmp_folder
=
False
instance
.
create_checkpoint
=
True
return
instance
\ No newline at end of file
symphony/orchestration/simbricks/orchestration/helpers/simulation.py
View file @
7e9743de
...
@@ -53,3 +53,32 @@ def disalbe_sync_simulation(simulation: sim_base.Simulation) -> None:
...
@@ -53,3 +53,32 @@ def disalbe_sync_simulation(simulation: sim_base.Simulation) -> None:
for
chan
in
simulation
.
get_all_channels
(
lazy
=
False
):
for
chan
in
simulation
.
get_all_channels
(
lazy
=
False
):
chan
.
_synchronized
=
False
chan
.
_synchronized
=
False
def
simple_simulation
(
system
:
system
.
System
,
sync
=
False
,
compmap
=
dict
[
type
[
system
.
Component
],
type
[
sim_base
.
Simulator
]]
):
"""Create simple simulation from system. Uses a map from component type to
simulator type and then creates one simulator per component."""
# FIXME: name from system, but system has no name
simulation
=
sim_base
.
Simulation
(
name
=
"netperf_sysconf"
,
system
=
system
)
for
comp
in
system
.
_all_components
.
values
():
if
comp
in
simulation
.
_sys_sim_map
:
continue
for
(
ct
,
st
)
in
compmap
.
items
():
if
isinstance
(
comp
,
ct
):
simulator
=
st
(
simulation
)
simulator
.
add
(
comp
)
if
comp
.
name
:
simulator
.
name
=
comp
.
name
if
not
sync
:
disalbe_sync_simulation
(
simulation
=
simulation
)
return
simulation
\ No newline at end of file
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