Skip to content

Commit

Permalink
[hardware] Fix rebase issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mp-17 committed Sep 2, 2024
1 parent 3cb66ed commit 2a5e353
Show file tree
Hide file tree
Showing 2 changed files with 4 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 @@ -115,7 +115,8 @@ module masku import ara_pkg::*; import rvv_pkg::*; #(
// Performs all shuffling and deshuffling of mask operands (including masks for mask instructions)
// Furthermore, it buffers certain operands that would create long critical paths
masku_operands #(
.NrLanes ( NrLanes )
.NrLanes ( NrLanes ),
.pe_req_t ( pe_req_t )
) i_masku_operands (
.clk_i ( clk_i ),
.rst_ni ( rst_ni ),
Expand Down
3 changes: 2 additions & 1 deletion hardware/src/masku/masku_operands.sv
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
//

module masku_operands import ara_pkg::*; import rvv_pkg::*; #(
parameter int unsigned NrLanes = 0
parameter int unsigned NrLanes = 0,
parameter type pe_req_t = logic
) (
input logic clk_i,
input logic rst_ni,
Expand Down

0 comments on commit 2a5e353

Please sign in to comment.