From 2c94e358b8d6cfacb360a18ea1810260507a685a Mon Sep 17 00:00:00 2001 From: Blaise Tine Date: Wed, 15 Nov 2023 00:52:39 -0800 Subject: [PATCH] perf counter bug fix --- hw/rtl/core/VX_core.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/rtl/core/VX_core.sv b/hw/rtl/core/VX_core.sv index d50a3d32..8aaea911 100644 --- a/hw/rtl/core/VX_core.sv +++ b/hw/rtl/core/VX_core.sv @@ -267,7 +267,7 @@ module VX_core import VX_gpu_pkg::*; #( wire [`CLOG2(DCACHE_NUM_REQS+1)-1:0] perf_dcache_rsp_per_cycle; - wire perf_icache_pending_read_cycle; + wire [1:0] perf_icache_pending_read_cycle; wire [`CLOG2(DCACHE_NUM_REQS+1)+1-1:0] perf_dcache_pending_read_cycle; reg [`PERF_CTR_BITS-1:0] perf_icache_pending_reads;