diff options
author | Michael LeBeane <michael.lebeane@amd.com> | 2016-10-26 22:48:40 -0400 |
---|---|---|
committer | Michael LeBeane <michael.lebeane@amd.com> | 2016-10-26 22:48:40 -0400 |
commit | dc16c1ceb806135dddb8c79ef4d5ecf1336f21bc (patch) | |
tree | fb8a0dde281883f6e817ad1854e6f8f0219a9fe4 /configs | |
parent | 48e43c9ad1cd292b494f3d05f9d13845dd1a6d1e (diff) | |
download | gem5-dc16c1ceb806135dddb8c79ef4d5ecf1336f21bc.tar.xz |
dev: Add m5 op to toggle synchronization for dist-gem5.
This patch adds the ability for an application to request dist-gem5 to begin/
end synchronization using an m5 op. When toggling on sync, all nodes agree
on the next sync point based on the maximum of all nodes' ticks. CPUs are
suspended until the sync point to avoid sending network messages until sync has
been enabled. Toggling off sync acts like a global execution barrier, where
all CPUs are disabled until every node reaches the toggle off point. This
avoids tricky situations such as one node hitting a toggle off followed by a
toggle on before the other nodes hit the first toggle off.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/common/Options.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/common/Options.py b/configs/common/Options.py index 16d817f59..a3335c7ef 100644 --- a/configs/common/Options.py +++ b/configs/common/Options.py @@ -169,6 +169,8 @@ def addCommonOptions(parser): # dist-gem5 options parser.add_option("--dist", action="store_true", help="Parallel distributed gem5 simulation.") + parser.add_option("--dist-sync-on-pseudo-op", action="store_true", + help="Use a pseudo-op to start dist-gem5 synchronization.") parser.add_option("--is-switch", action="store_true", help="Select the network switch simulator process for a"\ "distributed gem5 run") |