Commit fdaa4363 authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

experiments/iperf_client_server_pair: add Simics host simulator

parent 5ca26fad
...@@ -30,7 +30,7 @@ simulator combinations. Client and Server use the same simulators. ...@@ -30,7 +30,7 @@ simulator combinations. Client and Server use the same simulators.
from simbricks.orchestration import experiments as exp from simbricks.orchestration import experiments as exp
from simbricks.orchestration import nodeconfig, simulator_utils, simulators from simbricks.orchestration import nodeconfig, simulator_utils, simulators
host_types = ['qemu', 'gem5'] host_types = ['qemu', 'gem5', 'simics']
nic_types = ['i40e', 'e1000'] nic_types = ['i40e', 'e1000']
experiments = [] experiments = []
...@@ -61,6 +61,8 @@ for host_type in host_types: ...@@ -61,6 +61,8 @@ for host_type in host_types:
elif host_type == 'gem5': elif host_type == 'gem5':
HostClass = Gem5Timing HostClass = Gem5Timing
e.checkpoint = True e.checkpoint = True
elif host_type == 'simics':
HostClass = simulators.SimicsHost
else: else:
raise NameError(host_type) raise NameError(host_type)
......
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