From fe85846f0ef576f38c093db488d0d0ab0e96559a Mon Sep 17 00:00:00 2001 From: "msc24h31 Lucia Luzi (luzil)" Date: Thu, 12 Dec 2024 20:51:17 +0100 Subject: [PATCH] frontend: larger reorder buffer --- src/frontend/inst64/idma_inst64_top.sv | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/inst64/idma_inst64_top.sv b/src/frontend/inst64/idma_inst64_top.sv index cd702d0..26f0b9a 100644 --- a/src/frontend/inst64/idma_inst64_top.sv +++ b/src/frontend/inst64/idma_inst64_top.sv @@ -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; @@ -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];