From e2c20f604e898f599594b18363fa4bbb103f0802 Mon Sep 17 00:00:00 2001 From: wok1909 Date: Mon, 10 Feb 2025 02:25:39 +0000 Subject: [PATCH] [Fix] Add missing closing parenthesis --- src/main/scala/stellar/Examples.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/scala/stellar/Examples.scala b/src/main/scala/stellar/Examples.scala index d696082..f49f543 100644 --- a/src/main/scala/stellar/Examples.scala +++ b/src/main/scala/stellar/Examples.scala @@ -1696,7 +1696,7 @@ class OuterSpace(size: Int = 2, hasMatmul: Boolean = true, hasMerger: Boolean = while ((nElems / size) % size != 0) nElems += 1 Some(new RegFile(nElems = nElems, nIOCoords = 2, nDomainCoords = 3, domainCoordsToUseForOutputs = (if (leaveOutCoordLookupB) Seq(1 -> 0) else Seq.empty).toMap, nameOpt = Some("regB"), automaticallyOptimize = true)) } else None - val regScattered_MatmulOutputOpt = Option.when(hasMatmul)(new RegFile(nElems = size * size * size, nIOCoords = 3, nDomainCoords = 3, domainCoordsToUseForOutputs = Seq(0 -> 0).toMap, nameOpt = Some("regScattered_MatmulOutput"), automaticallyOptimize = true) + val regScattered_MatmulOutputOpt = Option.when(hasMatmul)(new RegFile(nElems = size * size * size, nIOCoords = 3, nDomainCoords = 3, domainCoordsToUseForOutputs = Seq(0 -> 0).toMap, nameOpt = Some("regScattered_MatmulOutput"), automaticallyOptimize = true)) val regScattered_MergerInputOpt = Option.when(hasMerger)(new RegFile(nElems = size * size * size * sramScatteredC_read_multiplier, nIOCoords = 3, nDomainCoords = 3, dontCheckExtraLastInAxisFlag = true, nameOpt = Some("regScattered_MergerInput"), automaticallyOptimize = true)) val regMergedOpt = Option.when(hasMerger)(new RegFile(nElems = size * 2, nIOCoords = 2, nDomainCoords = 3, nameOpt = Some("regMerged"), getTravellingOpCountFromInPorts = true, automaticallyOptimize = true))