"...resnet50_tensorflow.git" did not exist on "9733eeb0ba64289c4c904ad56b7fad75944ada56"
Commit 6a2d9ec2 authored by Jonas Kaufmann's avatar Jonas Kaufmann Committed by Antoine Kaufmann
Browse files

orchestration/simulators.py: add QemuIcountHost

parent 019f173c
......@@ -446,6 +446,15 @@ class QemuHost(HostSim):
return cmd
class QemuIcountHost(QemuHost):
"""QEMU host simulator that uses instruction counting for
synchronization."""
def __init__(self, node_config: NodeConfig) -> None:
super().__init__(node_config)
self.sync = True
class Gem5Host(HostSim):
"""Gem5 host simulator."""
......
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