pc-switcheroo-full.py (9674:d35bd171cf2a) pc-switcheroo-full.py (9826:014ff1fbff6d)
1# Copyright (c) 2012 ARM Limited
2# Copyright (c) 2013 Mark D. Hill and David A. Wood
3# All rights reserved.
4#
5# The license below extends only to copyright in the software and shall
6# not be construed as granting a license to any other intellectual
7# property including but not limited to intellectual property relating
8# to a hardware implementation of the functionality of the software

--- 28 unchanged lines hidden (view full) ---

37# Authors: Andreas Sandberg
38# Nilay Vaish
39
40from m5.objects import *
41from x86_generic import *
42import switcheroo
43
44root = LinuxX86FSSwitcheroo(
1# Copyright (c) 2012 ARM Limited
2# Copyright (c) 2013 Mark D. Hill and David A. Wood
3# All rights reserved.
4#
5# The license below extends only to copyright in the software and shall
6# not be construed as granting a license to any other intellectual
7# property including but not limited to intellectual property relating
8# to a hardware implementation of the functionality of the software

--- 28 unchanged lines hidden (view full) ---

37# Authors: Andreas Sandberg
38# Nilay Vaish
39
40from m5.objects import *
41from x86_generic import *
42import switcheroo
43
44root = LinuxX86FSSwitcheroo(
45 mem_class=DDR3_1600_x64,
45 cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, DerivO3CPU)
46 ).create_root()
47
48# Setup a custom test method that uses the switcheroo tester that
49# switches between CPU models.
50run_test = switcheroo.run_test
46 cpu_classes=(AtomicSimpleCPU, TimingSimpleCPU, DerivO3CPU)
47 ).create_root()
48
49# Setup a custom test method that uses the switcheroo tester that
50# switches between CPU models.
51run_test = switcheroo.run_test