From c98afa1fead8180cef962e5c3ad70ad761c54956 Mon Sep 17 00:00:00 2001 From: Yunsup Lee Date: Thu, 11 Sep 2014 22:10:25 -0700 Subject: [PATCH] turn off DRAMSideLLC --- src/main/scala/PublicConfigs.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/scala/PublicConfigs.scala b/src/main/scala/PublicConfigs.scala index 6e8a49bd..6a0bd475 100644 --- a/src/main/scala/PublicConfigs.scala +++ b/src/main/scala/PublicConfigs.scala @@ -103,7 +103,7 @@ class DefaultConfig extends ChiselConfig { if(site[Boolean]("USE_DRAMSIDE_LLC")) { val tag = Mem(Bits(width = 152), 512, seqRead = true) val data = Mem(Bits(width = 64), 4096, seqRead = true) - Module(new DRAMSideLLC(sets=512, ways=8, outstanding=16, + Module(new DRAMSideLLC_HasKnownBug(sets=512, ways=8, outstanding=16, refill_cycles=refill, tagLeaf=tag, dataLeaf=data)) } else { Module(new DRAMSideLLCNull(8, refill)) @@ -130,7 +130,7 @@ class DefaultConfig extends ChiselConfig { } case "ENABLE_SHARING" => true case "ENABLE_CLEAN_EXCLUSIVE" => true - case "USE_DRAMSIDE_LLC" => false + case "USE_DRAMSIDE_LLC" => false // DO NOT TURN ON. Read uncore/src/main/scala/llc.scala case "USE_L2_CACHE" => false } }