configs: Fix replacement policy assignment
authorDaniel R. Carvalho <odanrc@yahoo.com.br>
Mon, 2 Sep 2019 13:55:48 +0000 (15:55 +0200)
committerDaniel Carvalho <odanrc@yahoo.com.br>
Tue, 3 Sep 2019 08:30:11 +0000 (08:30 +0000)
Commit d207e9ccee411877fdeac80bb68a27900560f50f reworked the tags
to split the replacement policies, however the name of the variable
that contains the replacement policy changed between patch revisions,
which was not updated accordingly in the configs files.

Change-Id: I2072529e2c7d54197c371bcaa323bfd9f34ec3ba
Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/20548
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Tested-by: kokoro <noreply+kokoro@google.com>
configs/common/cores/arm/O3_ARM_v7a.py
configs/common/cores/arm/ex5_LITTLE.py
configs/common/cores/arm/ex5_big.py

index 3a1f9af7c151050d9df6611015c4c4d348cad05a..eaeeee336d7962434f23269c2fbda1e68f45f0db 100644 (file)
@@ -204,4 +204,4 @@ class O3_ARM_v7aL2(Cache):
     # Simple stride prefetcher
     prefetcher = StridePrefetcher(degree=8, latency = 1)
     tags = BaseSetAssoc()
-    repl_policy = RandomRP()
+    replacement_policy = RandomRP()
index 85fdd55419361444eae2fa790aebddb8ac54db34..ab946662f4fe3b6d2d0b450b823cc135a11e5788 100644 (file)
@@ -149,4 +149,4 @@ class L2(Cache):
     # Simple stride prefetcher
     prefetcher = StridePrefetcher(degree=1, latency = 1)
     tags = BaseSetAssoc()
-    repl_policy = RandomRP()
+    replacement_policy = RandomRP()
index 445aa3255b9fc0d9581336773595d04904566f48..c2b25a07aaec6198f06dc24c929f642ebcd8c62b 100644 (file)
@@ -201,4 +201,4 @@ class L2(Cache):
     # Simple stride prefetcher
     prefetcher = StridePrefetcher(degree=8, latency = 1)
     tags = BaseSetAssoc()
-    repl_policy = RandomRP()
+    replacement_policy = RandomRP()