"driver/src/conv_driver.cpp" did not exist on "a6b95c393b1e258ee45201abff05fcfa9fb6f149"
Commit 43333700 authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

experiments/basicmem: add simics

parent 57a79819
......@@ -41,7 +41,7 @@ class MemTest(nodec.AppConfig):
]
for h in ['gk']:
for h in ['gk', 'simics']:
e = exp.Experiment('basicmem-' + h)
e.checkpoint = False
......@@ -59,6 +59,13 @@ for h in ['gk']:
host.variant = 'opt'
elif h == 'qk':
host = sim.QemuHost(node_config)
elif h == 'simics':
host = sim.SimicsHost(node_config)
host.sync = True
e.checkpoint = True
else:
raise NameError(h)
host.name = 'host.0'
e.add_host(host)
host.wait = True
......
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