Skip to content

Commit

Permalink
[rtl] fix gatherNeedRead.
Browse files Browse the repository at this point in the history
  • Loading branch information
qinjun-li committed Nov 21, 2024
1 parent 1039719 commit 8670ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion t1/src/T1.scala
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ class T1(val parameter: T1Parameter)
parameter.instructionIndexBits
)

val gatherNeedRead: Bool = requestRegDequeue.valid && decodeResult(Decoder.gather)
val gatherNeedRead: Bool = requestRegDequeue.valid && decodeResult(Decoder.gather) && !decodeResult(Decoder.vtype)

/** state machine register for each instruction. */
val slots: Seq[InstructionControl] = Seq.tabulate(parameter.chainingSize) { index =>
Expand Down

0 comments on commit 8670ed5

Please sign in to comment.