From: Willy Wolff Date: Wed, 3 Apr 2019 14:09:11 +0000 (+0100) Subject: config, arm: memoryMode test X-Git-Tag: v19.0.0.0~787 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ea088f5150d03d4481555ecbbfa2afba3a87468a;p=gem5.git 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 --- 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")