Make numOldSrcIds and numNewSrcIds parameters of SoC

This commit is contained in:
Vamber Yang
2023-05-19 17:47:18 -07:00
parent ab3ce82aff
commit 0d96d81968
2 changed files with 8 additions and 2 deletions

View File

@@ -11,7 +11,9 @@ import freechips.rocketchip.util.MultiPortQueue
import freechips.rocketchip.unittest._
// TODO: find better place for these
case class SIMTCoreParams(nLanes: Int = 4)
// Note: numNewSrcId is not a part of CoreParam, because the SIMT core should be agnostic to how inflight coalesced request can be genertated
case class SIMTCoreParams(nLanes: Int = 4, nSrcIds: Int = 8)
case class MemtraceCoreParams(tracefilename: String = "undefined", traceHasSource: Boolean = false)
case class CoalXbarParam()