Skip to content

Commit

Permalink
[FPGA] Fix latch in simd_mul
Browse files Browse the repository at this point in the history
  • Loading branch information
elisabethumblet authored and elisabethumblet committed Apr 26, 2024
1 parent 9fc3680 commit 62e2832
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions hardware/src/lane/simd_mul.sv
Original file line number Diff line number Diff line change
Expand Up @@ -242,6 +242,7 @@ module simd_mul import ara_pkg::*; import rvv_pkg::*; #(
end : gen_mul

always_comb begin : p_mul
r = '0;
unique case (op)
// Single-Width integer multiply instructions
VMUL: for (int l = 0; l < 4; l++) result_o[16*l +: 16] = mul_res.w32[l][15:0];
Expand Down

0 comments on commit 62e2832

Please sign in to comment.