Add missing sizeWidth to uncoalescer test

This commit is contained in:
Hansung Kim
2023-04-21 11:24:57 -07:00
parent de478dcca9
commit 6ae08b6541

View File

@@ -255,6 +255,7 @@ class UncoalescingUnitTest extends AnyFlatSpec with ChiselScalatestTester {
val numLanes = 4 val numLanes = 4
val numPerLaneReqs = 2 val numPerLaneReqs = 2
val sourceWidth = 2 val sourceWidth = 2
val sizeWidth = 2
// 16B coalescing size // 16B coalescing size
val coalDataWidth = 128 val coalDataWidth = 128
val numInflightCoalRequests = 4 val numInflightCoalRequests = 4
@@ -265,8 +266,9 @@ class UncoalescingUnitTest extends AnyFlatSpec with ChiselScalatestTester {
numLanes, numLanes,
numPerLaneReqs, numPerLaneReqs,
sourceWidth, sourceWidth,
sizeWidth,
coalDataWidth, coalDataWidth,
numInflightCoalRequests numInflightCoalRequests,
) )
) )
// vcs helps with simulation time, but sometimes errors with // vcs helps with simulation time, but sometimes errors with