Skip to content

Commit

Permalink
[hardware] Fix missing connection
Browse files Browse the repository at this point in the history
  • Loading branch information
mp-17 committed Dec 8, 2024
1 parent ce027e5 commit e7322e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion hardware/src/masku/masku.sv
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ module masku import ara_pkg::*; import rvv_pkg::*; #(
.background_data_init_o (background_data_init ), // Shuffled
.masku_alu_popcount_o (masku_alu_popcount ),
.masku_alu_vfirst_count_o (masku_alu_vfirst_count ),
.masku_alu_vfirst_empty_o (masku_alu_vfrist_empty )
.masku_alu_vfirst_empty_o (masku_alu_vfirst_empty )
);

masku_predication_gen #(
Expand All @@ -627,6 +627,7 @@ module masku import ara_pkg::*; import rvv_pkg::*; #(
) i_masku_predication_gen (
.vinsn_issue_i (vinsn_issue ),
.masku_pred_pnt_i (masku_pred_pnt_q),
.masku_operand_m_i (masku_operand_m),
.masku_pred_strb_o (masku_pred_strb )
);

Expand Down
1 change: 0 additions & 1 deletion hardware/src/masku/masku_alu.sv
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ module masku_alu import ara_pkg::*; import rvv_pkg::*; #(
logic [NrLanes*DataWidth-1:0] masku_operand_alu_seq_m;
elen_t [NrLanes-1:0] result_queue_mask_seq;


// assign operand slices to be processed by popcount and lzc
assign vcpop_slice = vcpop_operand[(in_ready_cnt_i[idx_width(N_SLICES_CPOP)-1:0] * VcpopParallelism) +: VcpopParallelism];
assign vfirst_slice = vcpop_operand[(in_ready_cnt_i[idx_width(N_SLICES_VFIRST)-1:0] * VfirstParallelism) +: VfirstParallelism];
Expand Down

0 comments on commit e7322e0

Please sign in to comment.