Skip to content

Commit

Permalink
test: Use proper id_t type in mesh
Browse files Browse the repository at this point in the history
  • Loading branch information
fischeti committed Nov 10, 2023
1 parent 83e01e2 commit 3e8ef9d
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions test/tb_floo_dma_mesh.sv
Original file line number Diff line number Diff line change
Expand Up @@ -213,15 +213,14 @@ module tb_floo_dma_mesh;
.WideReorderBufferSize ( WideReorderBufferSize ),
.CutAx ( CutAx ),
.CutRsp ( CutRsp ),
.xy_id_t ( xy_id_t )
.id_t ( xy_id_t )
) i_hbm_chimney [NumChimneys-1:0] (
.clk_i ( clk ),
.rst_ni ( rst_n ),
.sram_cfg_i ( '0 ),
.test_enable_i ( 1'b0 ),
.id_i ( '0 ),
.id_i ( xy_id_hbm ),
.id_map_i ( '0 ),
.xy_id_i ( xy_id_hbm ),
.axi_narrow_in_req_i ( '0 ),
.axi_narrow_in_rsp_o ( ),
.axi_narrow_out_req_o ( narrow_hbm_req[i] ),
Expand Down Expand Up @@ -352,15 +351,14 @@ module tb_floo_dma_mesh;
.WideReorderBufferSize ( WideReorderBufferSize ),
.CutAx ( CutAx ),
.CutRsp ( CutRsp ),
.xy_id_t ( xy_id_t )
.id_t ( xy_id_t )
) i_dma_chimney (
.clk_i ( clk ),
.rst_ni ( rst_n ),
.sram_cfg_i ( '0 ),
.test_enable_i ( 1'b0 ),
.id_i ( '0 ),
.id_i ( current_id ),
.id_map_i ( '0 ),
.xy_id_i ( current_id ),
.axi_narrow_in_req_i ( narrow_man_req[x][y] ),
.axi_narrow_in_rsp_o ( narrow_man_rsp[x][y] ),
.axi_narrow_out_req_o ( narrow_sub_req[x][y] ),
Expand All @@ -382,7 +380,7 @@ module tb_floo_dma_mesh;
.ChannelFifoDepth ( ChannelFifoDepth ),
.OutputFifoDepth ( OutputFifoDepth ),
.RouteAlgo ( RouteAlgo ),
.XYRouteOpt ( 1'b0 ),
.XYRouteOpt ( 1'b1 ),
.id_t ( xy_id_t )
) i_router (
.clk_i ( clk ),
Expand Down

0 comments on commit 3e8ef9d

Please sign in to comment.