Skip to content

Commit

Permalink
[rtl] fix maskGroupSize.
Browse files Browse the repository at this point in the history
  • Loading branch information
qinjun-li committed Nov 20, 2024
1 parent 695869c commit 6585aa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t1/src/lsu/LSU.scala
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ case class LSUParameter(
val maskGroupWidth: Int = maxOffsetPerLaneAccess

/** see [[VParameter.maskGroupSize]]. */
val maskGroupSize: Int = vLen / datapathWidth
val maskGroupSize: Int = vLen / maskGroupWidth

/** hardware width of [[maskGroupSize]] */
val maskGroupSizeBits: Int = log2Ceil(maskGroupSize)
Expand Down

0 comments on commit 6585aa6

Please sign in to comment.