125a126,130
> if not options.caches:
> # O3 CPU must have a cache to work.
> print "O3 CPU must be used with caches"
> sys.exit(1)
>
164,167c169,172
< if not options.caches:
< # O3 CPU must have a cache to work.
< print "O3 CPU must be used with caches"
< sys.exit(1)
---
> testsys.switch_cpus = switch_cpus
> testsys.switch_cpus_1 = switch_cpus_1
> switch_cpu_list = [(testsys.cpu[i], switch_cpus[i]) for i in xrange(np)]
> switch_cpu_list1 = [(switch_cpus[i], switch_cpus_1[i]) for i in xrange(np)]
169,173d173
< testsys.switch_cpus = switch_cpus
< testsys.switch_cpus_1 = switch_cpus_1
< switch_cpu_list = [(testsys.cpu[i], switch_cpus[i]) for i in xrange(np)]
< switch_cpu_list1 = [(switch_cpus[i], switch_cpus_1[i]) for i in xrange(np)]
<