Skip to content

Commit

Permalink
fix: change CHIAsyncQueueBridge depth to 16 (#3768)
Browse files Browse the repository at this point in the history
To support maximum number of L-Credits defined in CHI.IssueE.b.14.2.1
  • Loading branch information
yulightenyu authored and Tang-Haojin committed Nov 14, 2024
1 parent 63e5731 commit 4bf9ef3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/scala/system/SoC.scala
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ case class SoCParameters
NumIRSrc: Int = 256,
UseXSNoCTop: Boolean = false,
IMSICUseTL: Boolean = false,
EnableCHIAsyncBridge: Option[AsyncQueueParams] = Some(AsyncQueueParams(depth = 4, sync = 3, safe = false)),
EnableCHIAsyncBridge: Option[AsyncQueueParams] = Some(AsyncQueueParams(depth = 16, sync = 3, safe = false)),
EnableClintAsyncBridge: Option[AsyncQueueParams] = Some(AsyncQueueParams(depth = 1, sync = 3, safe = false))
){
// L3 configurations
Expand Down

0 comments on commit 4bf9ef3

Please sign in to comment.