enable x86 workloads on se.py
authorLisa Hsu <Lisa.Hsu@amd.com>
Sun, 20 Mar 2011 04:13:02 +0000 (21:13 -0700)
committerLisa Hsu <Lisa.Hsu@amd.com>
Sun, 20 Mar 2011 04:13:02 +0000 (21:13 -0700)
configs/example/se.py

index 8076e160209b5275a17a6da874932f445e12009b..2491a32e44169d2ed2f061d104e2a5d5403369c1 100644 (file)
@@ -87,13 +87,13 @@ if options.bench:
 
     for app in apps:
         try:
-            if buildEnv['TARGET_ISA'] != 'alpha':
-                print >>sys.stderr, "Simpoints code only works for Alpha ISA at this time"
-                sys.exit(1)
-            exec("workload = %s('alpha', 'tru64', 'ref')" % app)
+            if buildEnv['TARGET_ISA'] == 'alpha':
+                exec("workload = %s('alpha', 'tru64', 'ref')" % app)
+            else:
+                exec("workload = %s(buildEnv['TARGET_ISA'], 'linux', 'ref')" % app)
             multiprocesses.append(workload.makeLiveProcess())
         except:
-            print >>sys.stderr, "Unable to find workload for %s" % app
+            print >>sys.stderr, "Unable to find workload for %s: %s" % (buildEnv['TARGET_ISA'], app)
             sys.exit(1)
 else:
     process = LiveProcess()