Skip to content

Commit

Permalink
[config] Update SmallBoomConfig to have same cache size as Medium rat…
Browse files Browse the repository at this point in the history
…her than DefaultBoomConfig
  • Loading branch information
abejgonzalez committed Feb 13, 2019
1 parent 18e26b8 commit 893f78d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/scala/common/configs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ class WithSmallBooms extends Config((site, here, up) => {
tage = Some(TageParameters(enabled=false)),
bpdBaseOnly = Some(BaseOnlyParameters(enabled=true)),
nPerfCounters = 2),
icache = Some(r.icache.get.copy(fetchBytes=2*4))
dcache = Some(DCacheParams(rowBits = site(SystemBusKey).beatBits, nSets=64, nWays=4, nMSHRs=2, nTLBEntries=8)),
icache = Some(ICacheParams(rowBits = site(SystemBusKey).beatBits, nSets=64, nWays=4, fetchBytes=2*4))
)}
case SystemBusKey => up(SystemBusKey, site).copy(beatBytes = 8)
})
Expand Down

0 comments on commit 893f78d

Please sign in to comment.