From 60d4180249e1f4b043d388a278f3aae029ab8f8a Mon Sep 17 00:00:00 2001 From: Hansung Kim Date: Tue, 16 Jan 2024 23:53:14 -0800 Subject: [PATCH] Increase LSUQ and IBUF size --- hw/rtl/VX_config.vh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/rtl/VX_config.vh b/hw/rtl/VX_config.vh index 6ecb3cf4..e0c462f5 100644 --- a/hw/rtl/VX_config.vh +++ b/hw/rtl/VX_config.vh @@ -249,12 +249,12 @@ // Size of Instruction Buffer `ifndef IBUF_SIZE -`define IBUF_SIZE (2 * (`NUM_WARPS / `ISSUE_WIDTH)) +`define IBUF_SIZE (8 * (`NUM_WARPS / `ISSUE_WIDTH)) `endif // Size of LSU Request Queue `ifndef LSUQ_SIZE -`define LSUQ_SIZE (2 * (`NUM_THREADS / `NUM_LSU_LANES)) +`define LSUQ_SIZE (8 * (`NUM_THREADS / `NUM_LSU_LANES)) `endif // LSU Duplicate Address Check