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 Oct 31, 2024
1 parent ea81d51 commit 0abf633
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion hardware/src/masku/masku.sv
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ 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 ),
.pe_resp_t( pe_resp_t )
) i_masku_operands (
.clk_i ( clk_i ),
.rst_ni ( rst_ni ),
Expand Down
4 changes: 3 additions & 1 deletion hardware/src/masku/masku_operands.sv
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
//

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,
parameter type pe_resp_t = logic
) (
input logic clk_i,
input logic rst_ni,
Expand Down

0 comments on commit 0abf633

Please sign in to comment.