Unverified Commit 7e9743de authored by Antoine Kaufmann's avatar Antoine Kaufmann
Browse files

symphony/orchestration: helpers for simple sim and inst

parent be8fda17
# 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
......@@ -53,3 +53,32 @@ def disalbe_sync_simulation(simulation: sim_base.Simulation) -> None:
for chan in simulation.get_all_channels(lazy=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
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