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.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user