changeset 763f76d5dea7 in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=763f76d5dea7
description:
        config: Fix cache latency param in mem test

        This patch fixes the cache latency in mem test which is split into two 
params,
        hit and response latency as per BaseCache.

diffstat:

 configs/example/memtest.py |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (13 lines):

diff -r 82773ace39fa -r 763f76d5dea7 configs/example/memtest.py
--- a/configs/example/memtest.py        Sun Aug 10 05:39:20 2014 -0400
+++ b/configs/example/memtest.py        Sun Aug 10 05:39:40 2014 -0400
@@ -139,7 +139,8 @@
      prev = prototypes[0]
      next = prev()
      next.size = prev.size * scale
-     next.latency = prev.latency * 10
+     next.hit_latency = prev.hit_latency * 10
+     next.response_latency = prev.response_latency * 10
      next.assoc = prev.assoc * scale
      next.mshrs = prev.mshrs * scale
      prototypes.insert(0, next)
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to