SE Config: Changed se.py to support multithreaded mode
authorJayneel Gandhi <jayneel@cs.wisc.edu>
Tue, 17 Apr 2012 21:12:41 +0000 (16:12 -0500)
committerJayneel Gandhi <jayneel@cs.wisc.edu>
Tue, 17 Apr 2012 21:12:41 +0000 (16:12 -0500)
Multithreaded programs did not run by just specifying the binary once on the
command line of SE mode.The default mode is multi-programmed mode. Added
check in SE mode to run multi-threaded programs in case only one program is
specified with multiple CPUS. Default mode is still multi-programmed mode.

configs/example/se.py

index 853947475de93d6c949e1df04337f604f90159ee..855c685c8c0e4a23d2df60459e1512a2923e1ea9 100644 (file)
@@ -160,7 +160,10 @@ if options.fastmem and (options.caches or options.l2cache):
     fatal("You cannot use fastmem in combination with caches!")
 
 for i in xrange(np):
-    system.cpu[i].workload = multiprocesses[i]
+    if len(multiprocesses) == 1:
+        system.cpu[i].workload = multiprocesses[0]
+    else:
+        system.cpu[i].workload = multiprocesses[i]
 
     if options.fastmem:
         system.cpu[0].fastmem = True