From a6dbfc39010cd5449467ff9f901aebf668bad72d Mon Sep 17 00:00:00 2001 From: Hansung Kim Date: Sun, 7 May 2023 16:12:59 -0700 Subject: [PATCH] Fix config for unittest --- src/test/scala/coalescing/CoalescingUnitTest.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/scala/coalescing/CoalescingUnitTest.scala b/src/test/scala/coalescing/CoalescingUnitTest.scala index 2d31711..1f8c849 100644 --- a/src/test/scala/coalescing/CoalescingUnitTest.scala +++ b/src/test/scala/coalescing/CoalescingUnitTest.scala @@ -190,8 +190,8 @@ object testConfig extends CoalescerConfig( respQueueDepth = 4, coalLogSizes = Seq(4, 5), sizeEnum = DefaultInFlightTableSizeEnum, - numArbiterOutputPorts = 4, numCoalReqs = 1, + numArbiterOutputPorts = 4, bankStrideInBytes = 64 ) @@ -292,7 +292,7 @@ class CoalescerUnitTest extends AnyFlatSpec with ChiselScalatestTester { it should "coalesce identical addresses (stride of 0)" in { test(LazyModule(new DummyCoalescingUnitTB()).module) - .withAnnotations(Seq(VcsBackendAnnotation)) + .withAnnotations(Seq(VerilatorBackendAnnotation)) { c => println(s"coalIO length = ${c.coalIOs(0).length}") val nodes = c.coalIOs.map(_.head)