From 0fa14b7661517e8354fac3f642b168fcf2a6f0f4 Mon Sep 17 00:00:00 2001 From: Hansung Kim Date: Wed, 23 Aug 2023 17:44:57 -0700 Subject: [PATCH] Use cf-interpolator for simulation-time string sizeInBits is a sim-time variable. --- src/main/scala/tilelink/Coalescing.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/tilelink/Coalescing.scala b/src/main/scala/tilelink/Coalescing.scala index e7a4ded..1933f33 100644 --- a/src/main/scala/tilelink/Coalescing.scala +++ b/src/main/scala/tilelink/Coalescing.scala @@ -1056,7 +1056,7 @@ class Uncoalescer( val sizeInBits = ((1.U << logSize) << 3.U).asUInt assert( (dataWidth > 0).B && (dataWidth.U % sizeInBits === 0.U), - s"coalesced data width ($dataWidth) not evenly divisible by core req size ($sizeInBits)" + cf"coalesced data width ($dataWidth) not evenly divisible by core req size ($sizeInBits)" ) val numChunks = dataWidth / 32