changeset 36dfd27e4a4e in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=36dfd27e4a4e
description:
sim: Use the old work item behavior by default
When adding an option to forward work items to the Python environment,
the new behavior was accidentally enabled by default. Set the value of
exit_on_work_items to False by default to revert to the old behavior
unless the simulation scripts explicitly requests work item
forwarding.
diffstat:
src/sim/System.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 744e6074f6ae -r 36dfd27e4a4e src/sim/System.py
--- a/src/sim/System.py Thu Dec 17 17:07:22 2015 -0500
+++ b/src/sim/System.py Fri Dec 18 10:14:17 2015 +0000
@@ -73,7 +73,7 @@
cache_line_size = Param.Unsigned(64, "Cache line size in bytes")
- exit_on_work_items = Param.Bool(True, "Exit from the simulation loop when "
+ exit_on_work_items = Param.Bool(False, "Exit from the simulation loop when
"
"encountering work item annotations.")
work_item_id = Param.Int(-1, "specific work item id")
num_work_ids = Param.Int(16, "Number of distinct work item types")
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev