Configs: Fix memtest cache latency to match new parameters
This patch changes the memtest config to use the new response latency of the cache model.
This commit is contained in:
parent
9d9b71e485
commit
6596059d05
1 changed files with 2 additions and 1 deletions
|
@ -110,7 +110,8 @@ if len(treespec) < 1:
|
||||||
|
|
||||||
# define prototype L1 cache
|
# define prototype L1 cache
|
||||||
proto_l1 = BaseCache(size = '32kB', assoc = 4, block_size = block_size,
|
proto_l1 = BaseCache(size = '32kB', assoc = 4, block_size = block_size,
|
||||||
latency = '1ns', tgts_per_mshr = 8)
|
hit_latency = '1ns', response_latency = '1ns',
|
||||||
|
tgts_per_mshr = 8)
|
||||||
|
|
||||||
if options.blocking:
|
if options.blocking:
|
||||||
proto_l1.mshrs = 1
|
proto_l1.mshrs = 1
|
||||||
|
|
Loading…
Reference in a new issue