Skip to content

Commit

Permalink
[hardware] 🐛 Enable SIMD mul clock since op issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mp-17 committed Sep 6, 2023
1 parent e82dfca commit d5baf8b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion hardware/src/lane/vmfpu.sv
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,8 @@ module vmfpu import ara_pkg::*; import rvv_pkg::*; import fpnew_pkg::*;
.Z (clk_i_gated )
);

assign clkgate_en_d = vinsn_processing_d_valid & (vinsn_processing_d.op inside {[VMUL:VSMUL]});
assign clkgate_en_d = (vinsn_issue_d_valid & (vinsn_issue_d.op inside {[VMUL:VSMUL]}))
| (vinsn_processing_d_valid & (vinsn_processing_d.op inside {[VMUL:VSMUL]}));

elen_t [3:0] vmul_simd_result;
logic [3:0] vmul_simd_in_valid;
Expand Down

0 comments on commit d5baf8b

Please sign in to comment.