diff options
author | Ron Dreslinski <rdreslin@umich.edu> | 2006-11-15 18:22:15 -0500 |
---|---|---|
committer | Ron Dreslinski <rdreslin@umich.edu> | 2006-11-15 18:22:15 -0500 |
commit | dbdf2f14ae6b586efd31b73aa4548a38ecee263f (patch) | |
tree | fbb16a45b68b98e23636d298e89801bd8826632a /configs/common/Caches.py | |
parent | 4fbbb74a5c060110affdb235ce87bb53e2938b43 (diff) | |
download | gem5-dbdf2f14ae6b586efd31b73aa4548a38ecee263f.tar.xz |
Add L2 cache option to fs.py --l2cache
--HG--
extra : convert_revision : 5bdd1129c3b23e91d441e7b83f6a824ef7740fab
Diffstat (limited to 'configs/common/Caches.py')
-rw-r--r-- | configs/common/Caches.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configs/common/Caches.py b/configs/common/Caches.py index d86fba246..4692ef537 100644 --- a/configs/common/Caches.py +++ b/configs/common/Caches.py @@ -37,3 +37,10 @@ class L1Cache(BaseCache): tgts_per_mshr = 5 protocol = CoherenceProtocol(protocol='moesi') +class L2Cache(BaseCache): + assoc = 8 + block_size = 64 + latency = 10 + mshrs = 20 + tgts_per_mshr = 12 + |