changeset 431fcc41ae4a in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=431fcc41ae4a
description:
        Config: Fix a typo in the se.py script for setting fastmem

        This patch changes a hardcoded index 0 to the appropriate CPU index so
        that fastmem is set correctly for all the CPUs in the system.

diffstat:

 configs/example/se.py |  2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diffs (12 lines):

diff -r f681719e2e99 -r 431fcc41ae4a configs/example/se.py
--- a/configs/example/se.py     Thu May 10 18:04:29 2012 -0500
+++ b/configs/example/se.py     Wed May 16 12:37:08 2012 -0400
@@ -166,7 +166,7 @@
         system.cpu[i].workload = multiprocesses[i]
 
     if options.fastmem:
-        system.cpu[0].fastmem = True
+        system.cpu[i].fastmem = True
 
     if options.checker:
         system.cpu[i].addCheckerCpu()
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to