From ea088f5150d03d4481555ecbbfa2afba3a87468a Mon Sep 17 00:00:00 2001 From: Willy Wolff Date: Wed, 3 Apr 2019 15:09:11 +0100 Subject: [PATCH] config, arm: memoryMode test Commit 9a13acaa367769c38859342de9bc35aac59a6710 doesn't comply with the same behaviour. The conditional test the memory mode on the same cluster, while it should test the other cluster. Change-Id: If3a7863f0905e66a548001d8e74689f5dd07179c Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/17748 Tested-by: kokoro Reviewed-by: Nikos Nikoleris Reviewed-by: Jason Lowe-Power Reviewed-by: Giacomo Travaglini Maintainer: Jason Lowe-Power --- configs/example/arm/fs_bigLITTLE.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/example/arm/fs_bigLITTLE.py b/configs/example/arm/fs_bigLITTLE.py index 678b038ea..539d1e784 100644 --- a/configs/example/arm/fs_bigLITTLE.py +++ b/configs/example/arm/fs_bigLITTLE.py @@ -242,7 +242,7 @@ def build(options): # Figure out the memory mode if options.big_cpus > 0 and options.little_cpus > 0 and \ - system.littleCluster.memoryMode() != system.littleCluster.memoryMode(): + system.bigCluster.memoryMode() != system.littleCluster.memoryMode(): m5.util.panic("Memory mode missmatch among CPU clusters") -- 2.30.2