summaryrefslogtreecommitdiff
path: root/configs
diff options
context:
space:
mode:
authorPierre-Yves Péneau <pierre-yves.peneau@lirmm.fr>2017-05-12 17:50:35 +0200
committerPierre-Yves Péneau <pierre-yves.peneau@lirmm.fr>2017-05-18 14:56:46 +0000
commit679a0e2ef1cc830c0de7e26ae1ff47df4d6e53b8 (patch)
treeeca3da1bf679c13db865d17910b9f1c0d5e94496 /configs
parent5bf2a86c6a8a1fc68422053e1a782d3efe0e6f3c (diff)
downloadgem5-679a0e2ef1cc830c0de7e26ae1ff47df4d6e53b8.tar.xz
configs: fix cpu names in big.LITTLE example
CPU aliases have been dropped, this change fixes the big.LITTLE example. Change-Id: Idd59a6eca93448ef0e23087365fb5452bcef9247 Signed-off-by: Pierre-Yves Péneau <pierre-yves.peneau@lirmm.fr> Reviewed-on: https://gem5-review.googlesource.com/3300 Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'configs')
-rw-r--r--configs/example/arm/fs_bigLITTLE.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/configs/example/arm/fs_bigLITTLE.py b/configs/example/arm/fs_bigLITTLE.py
index 3e7ac2f76..4f548b184 100644
--- a/configs/example/arm/fs_bigLITTLE.py
+++ b/configs/example/arm/fs_bigLITTLE.py
@@ -84,7 +84,7 @@ def _using_pdes(root):
class BigCluster(devices.CpuCluster):
def __init__(self, system, num_cpus, cpu_clock,
cpu_voltage="1.0V"):
- cpu_config = [ CpuConfig.get("arm_detailed"), devices.L1I, devices.L1D,
+ cpu_config = [ CpuConfig.get("O3_ARM_v7a_3"), devices.L1I, devices.L1D,
devices.WalkCache, devices.L2 ]
super(BigCluster, self).__init__(system, num_cpus, cpu_clock,
cpu_voltage, *cpu_config)
@@ -92,7 +92,7 @@ class BigCluster(devices.CpuCluster):
class LittleCluster(devices.CpuCluster):
def __init__(self, system, num_cpus, cpu_clock,
cpu_voltage="1.0V"):
- cpu_config = [ CpuConfig.get("minor"), devices.L1I, devices.L1D,
+ cpu_config = [ CpuConfig.get("MinorCPU"), devices.L1I, devices.L1D,
devices.WalkCache, devices.L2 ]
super(LittleCluster, self).__init__(system, num_cpus, cpu_clock,
cpu_voltage, *cpu_config)