From 679a0e2ef1cc830c0de7e26ae1ff47df4d6e53b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Yves=20P=C3=A9neau?= Date: Fri, 12 May 2017 17:50:35 +0200 Subject: configs: fix cpu names in big.LITTLE example MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CPU aliases have been dropped, this change fixes the big.LITTLE example. Change-Id: Idd59a6eca93448ef0e23087365fb5452bcef9247 Signed-off-by: Pierre-Yves PĂ©neau Reviewed-on: https://gem5-review.googlesource.com/3300 Reviewed-by: Andreas Sandberg Maintainer: Andreas Sandberg --- configs/example/arm/fs_bigLITTLE.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configs') 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) -- cgit v1.2.3