From: Radhika Jagtap Date: Sun, 10 Aug 2014 09:39:40 +0000 (-0400) Subject: config: Fix cache latency param in mem test X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=860f00228be0181a7dcb1b32802401da05edae03;p=gem5.git 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. --- diff --git a/configs/example/memtest.py b/configs/example/memtest.py index 13385b61f..feeffa764 100644 --- a/configs/example/memtest.py +++ b/configs/example/memtest.py @@ -139,7 +139,8 @@ for scale in treespec[:-2]: 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)