From 7f14ea0c0053f49ada31a51a3d88c44abb18cf66 Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Wed, 16 May 2012 12:37:08 -0400 Subject: [PATCH] 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. --- configs/example/se.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()