configs: Fix replacement policy assignment

Commit d207e9ccee 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>
This commit is contained in:
Daniel R. Carvalho
2019-09-02 15:55:48 +02:00
committed by Daniel Carvalho
parent 3198a52448
commit 5cc0db697d
3 changed files with 3 additions and 3 deletions

View 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()

View 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()

View 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()