From 860f00228be0181a7dcb1b32802401da05edae03 Mon Sep 17 00:00:00 2001 From: Radhika Jagtap Date: Sun, 10 Aug 2014 05:39:40 -0400 Subject: [PATCH] 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. --- configs/example/memtest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)