Skip to content

Commit 37a2272

Browse files
committed
lsu: load/store depth 2
1 parent 0cc964f commit 37a2272

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/scala/radiance/muon/LSU.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import org.chipsalliance.cde.config.Field
1111
case class LoadStoreUnitParams(
1212
val numLsuLanes: Int = 16, // width of downstream memory interface and writeback; width of execute fixed to # of lanes
1313

14-
val numGlobalLdqEntries: Int = 4, // limited to 8 decoded global load insts per warp
15-
val numGlobalStqEntries: Int = 4, // limited to 4 decoded global store insts per warp
16-
val numSharedLdqEntries: Int = 4, // limited to 8 decoded shared load insts per warp
17-
val numSharedStqEntries: Int = 4, // limited to 8 decoded shared store insts per warp
14+
val numGlobalLdqEntries: Int = 2, // limited to 8 decoded global load insts per warp
15+
val numGlobalStqEntries: Int = 2, // limited to 4 decoded global store insts per warp
16+
val numSharedLdqEntries: Int = 2, // limited to 8 decoded shared load insts per warp
17+
val numSharedStqEntries: Int = 2, // limited to 8 decoded shared store insts per warp
1818

1919
val loadDataEntries: Int = 16, // limited to 16 in-flight / waiting to writeback load requests
2020
val storeDataEntries: Int = 8, // limited to 8 unissued store requests

0 commit comments

Comments
 (0)