Skip to content

Commit

Permalink
frontend: larger reorder buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
msc24h31 Lucia Luzi (luzil) committed Dec 12, 2024
1 parent 52375bb commit fe85846
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frontend/inst64/idma_inst64_top.sv
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ module idma_inst64_top #(
localparam int unsigned TFLenWidth = AxiAddrWidth;
localparam int unsigned RepWidth = 32'd32;
localparam int unsigned NumDim = 32'd2;
localparam int unsigned BufferDepth = 32'd3;
localparam int unsigned BufferDepth = 32'd16;

// derived constants and types
localparam int unsigned StrbWidth = AxiDataWidth / 32'd8;
Expand Down Expand Up @@ -422,7 +422,7 @@ module idma_inst64_top #(
// 4. send acc response (pvalid)
// 5. acknowledge acc request (qready)
if (acc_res_ready) begin
idma_fe_req_valid [idma_fe_sel_chan] = 1'b1;
idma_fe_req_valid[idma_fe_sel_chan] = 1'b1;
if (idma_fe_req_ready[idma_fe_sel_chan]) begin
acc_res.id = acc_req_i.id;
acc_res.data = next_id[idma_fe_sel_chan];
Expand Down

0 comments on commit fe85846

Please sign in to comment.