tests: Update test scripts to work with Python 3
authorAndreas Sandberg <andreas.sandberg@arm.com>
Mon, 28 Jan 2019 16:53:47 +0000 (16:53 +0000)
committerAndreas Sandberg <andreas.sandberg@arm.com>
Mon, 25 Feb 2019 14:24:08 +0000 (14:24 +0000)
Change-Id: I71b1e595765fed9e9f234c9722c33ac5348d4f11
Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/15999
Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com>
12 files changed:
tests/configs/base_config.py
tests/configs/gpu-ruby.py
tests/configs/memtest-filter.py
tests/configs/memtest-ruby.py
tests/configs/memtest.py
tests/configs/o3-timing-mp-ruby.py
tests/configs/pc-simple-timing-ruby.py
tests/configs/simple-atomic-mp-ruby.py
tests/configs/simple-timing-mp-ruby.py
tests/configs/t1000-simple-atomic.py
tests/legacy-configs/run.py
tests/run.py

index e0996331477686d4c7d435e5c71b698d30d99436..2bed5f66111279408278f753489b120172d16dfb 100644 (file)
@@ -288,7 +288,7 @@ class BaseFSSystem(BaseSystem):
                                            response_latency = 20,
                                            tgts_per_mshr = 8)
                           for r in system.mem_ranges]
-            for i in xrange(len(system.physmem)):
+            for i in range(len(system.physmem)):
                 system.physmem[i].port = system.llc[i].mem_side
                 system.llc[i].cpu_side = system.membus.master
 
index e846dbaf62b8caf7d78512909df6318a71ccc8cd..155775a0bbf2627e45997e28329421522e845a7d 100644 (file)
@@ -197,7 +197,7 @@ if options.TLB_config == "perLane":
 
 # List of compute units; one GPU can have multiple compute units
 compute_units = []
-for i in xrange(n_cu):
+for i in range(n_cu):
     compute_units.append(ComputeUnit(cu_id = i, perLaneTLB = per_lane,
                                      num_SIMDs = options.simds_per_cu,
                                      wfSize = options.wf_size,
@@ -227,8 +227,8 @@ for i in xrange(n_cu):
                                               options.ldsBankConflictPenalty)))
     wavefronts = []
     vrfs = []
-    for j in xrange(options.simds_per_cu):
-        for k in xrange(shader.n_wf):
+    for j in range(options.simds_per_cu):
+        for k in range(int(shader.n_wf)):
             wavefronts.append(Wavefront(simdId = j, wf_slot_id = k))
         vrfs.append(VectorRegisterFile(simd_id=j,
                               num_regs_per_simd=options.vreg_file_size))
@@ -308,15 +308,15 @@ gpu_port_idx = len(system.ruby._cpu_ports) \
 gpu_port_idx = gpu_port_idx - options.num_cp * 2
 
 wavefront_size = options.wf_size
-for i in xrange(n_cu):
+for i in range(n_cu):
     # The pipeline issues wavefront_size number of uncoalesced requests
     # in one GPU issue cycle. Hence wavefront_size mem ports.
-    for j in xrange(wavefront_size):
+    for j in range(wavefront_size):
         system.cpu[shader_idx].CUs[i].memory_port[j] = \
                   system.ruby._cpu_ports[gpu_port_idx].slave[j]
     gpu_port_idx += 1
 
-for i in xrange(n_cu):
+for i in range(n_cu):
     if i > 0 and not i % options.cu_per_sqc:
         gpu_port_idx += 1
     system.cpu[shader_idx].CUs[i].sqc_port = \
index 90ad0421c5affe2593320074d9af0d06049094cf..56297d2d9057819e77f1d064417533d1e6c5d808 100644 (file)
@@ -33,7 +33,7 @@ from common.Caches import *
 
 #MAX CORES IS 8 with the fals sharing method
 nb_cores = 8
-cpus = [ MemTest() for i in xrange(nb_cores) ]
+cpus = [ MemTest() for i in range(nb_cores) ]
 
 # system simulated
 system = System(cpu = cpus,
index 9cf92af63feedbe5ca15026322c762c097f2214d..5947c806126f956159b747acf4d094353c57f68e 100644 (file)
@@ -66,7 +66,7 @@ nb_cores = 8
 # ruby does not support atomic, functional, or uncacheable accesses
 cpus = [ MemTest(percent_functional=50,
                  percent_uncacheable=0, suppress_func_warnings=True) \
-         for i in xrange(nb_cores) ]
+         for i in range(nb_cores) ]
 
 # overwrite options.num_cpus with the nb_cores value
 options.num_cpus = nb_cores
index db7a5ef228cb7e983875f2882abc24cb6506d26b..959ec4e5d57e035a738c6bcfd3afbd3f9658122d 100644 (file)
@@ -33,7 +33,7 @@ from common.Caches import *
 
 #MAX CORES IS 8 with the fals sharing method
 nb_cores = 8
-cpus = [ MemTest() for i in xrange(nb_cores) ]
+cpus = [ MemTest() for i in range(nb_cores) ]
 
 # system simulated
 system = System(cpu = cpus,
index 9248b08fbea43a5700e0ba4ea3c0c884575976b7..90319d1f09733787623bf8766131871ecf231f28 100644 (file)
@@ -30,7 +30,7 @@ import m5
 from m5.objects import *
 
 nb_cores = 4
-cpus = [ DerivO3CPU(cpu_id=i) for i in xrange(nb_cores) ]
+cpus = [ DerivO3CPU(cpu_id=i) for i in range(nb_cores) ]
 
 import ruby_config
 ruby_memory = ruby_config.generate("TwoLevel_SplitL1UnifiedL2.rb", nb_cores)
index 19c38dc329b47bd2a9af00dbacb79305ffe63c78..18c9909302bd5497ad73c7b0fc1d95867ac1efaf 100644 (file)
@@ -63,7 +63,7 @@ system.clk_domain = SrcClockDomain(clock = '1GHz',
 system.cpu_clk_domain = SrcClockDomain(clock = '2GHz',
                                        voltage_domain = system.voltage_domain)
 system.cpu = [TimingSimpleCPU(cpu_id=i, clk_domain = system.cpu_clk_domain)
-              for i in xrange(options.num_cpus)]
+              for i in range(options.num_cpus)]
 
 Ruby.create_system(options, True, system, system.iobus, system._dma_ports)
 
index e435907417ea4c2600664cb866f955f581f048ee..52cba7d2b3caa6127cfb456f28f94b4e4d149209 100644 (file)
@@ -30,7 +30,7 @@ import m5
 from m5.objects import *
 
 nb_cores = 4
-cpus = [ AtomicSimpleCPU(cpu_id=i) for i in xrange(nb_cores) ]
+cpus = [ AtomicSimpleCPU(cpu_id=i) for i in range(nb_cores) ]
 
 import ruby_config
 ruby_memory = ruby_config.generate("TwoLevel_SplitL1UnifiedL2.rb", nb_cores)
index 248d04654ae314e9b00683095b75c8869e62cc72..52d7df991e1ac9ed473e1929354cd0c791672e90 100644 (file)
@@ -59,7 +59,7 @@ options.l2_assoc=2
 options.l3_assoc=2
 
 nb_cores = 4
-cpus = [ TimingSimpleCPU(cpu_id=i) for i in xrange(nb_cores) ]
+cpus = [ TimingSimpleCPU(cpu_id=i) for i in range(nb_cores) ]
 
 # overwrite the num_cpus to equal nb_cores
 options.num_cpus = nb_cores
index 0d971a054a468162e1a546bab2f222c76b80bdde..ea906b31734d269dac953b75e3163249575448bf 100644 (file)
@@ -51,7 +51,7 @@ cpu.connectAllPorts(system.membus)
 # the physmem name to avoid bumping all the reference stats
 system.physmem = [SimpleMemory(range = r)
                   for r in system.mem_ranges]
-for i in xrange(len(system.physmem)):
+for i in range(len(system.physmem)):
     system.physmem[i].port = system.membus.master
 
 root = Root(full_system=True, system=system)
index 3eac49095dd3598b38118efbcb005193078e09f1..47b5ab74922ae7e4d22a61ece520f48096227302 100644 (file)
@@ -85,7 +85,7 @@ args = parser.parse_args()
 executable = args.executable
 
 for config in args.config:
-    execfile(config)
+    exec(compile(open(config).read(), config, 'exec'))
 
 # Initialize all CPUs in a system
 def initCPUs(sys):
index 93ea82edd2c040decb4fe4cc0f2bcb0cebcb4ea2..6e4b45311d86f87fb7159e19bf47a889b766295a 100644 (file)
@@ -209,7 +209,9 @@ test_filename = config
 # for ruby configurations, remove the protocol name from the test filename
 if re.search('-ruby', test_filename):
     test_filename = test_filename.split('-ruby')[0]+'-ruby'
-execfile(joinpath(tests_root, 'configs', test_filename + '.py'))
+exec(compile( \
+    open(joinpath(tests_root, 'configs', test_filename + '.py')).read(), \
+    joinpath(tests_root, 'configs', test_filename + '.py'), 'exec'))
 
 # set default maxtick... script can override
 # -1 means run forever
@@ -217,7 +219,9 @@ maxtick = m5.MaxTick
 
 # tweak configuration for specific test
 sys.path.append(joinpath(tests_root, category, mode, name))
-execfile(joinpath(tests_root, category, mode, name, 'test.py'))
+exec(compile( \
+    open(joinpath(tests_root, category, mode, name, 'test.py')).read(), \
+    joinpath(tests_root, category, mode, name, 'test.py'), 'exec'))
 
 # Initialize all CPUs in a system
 def initCPUs(sys):