From: Andreas Hansson Date: Wed, 16 May 2012 16:37:08 +0000 (-0400) Subject: Config: Fix a typo in the se.py script for setting fastmem X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=7f14ea0c0053f49ada31a51a3d88c44abb18cf66;p=gem5.git 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. --- diff --git a/configs/example/se.py b/configs/example/se.py index 855c685c8..8324bea4e 100644 --- a/configs/example/se.py +++ b/configs/example/se.py @@ -166,7 +166,7 @@ for i in xrange(np): 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()