From a1832339d2b5528293eb29ff5d475811bf39135a Mon Sep 17 00:00:00 2001 From: Alex Forencich Date: Wed, 16 Apr 2025 22:41:57 -0700 Subject: [PATCH] stats: Exclude strings from statistics counts Signed-off-by: Alex Forencich --- rtl/stats/taxi_stats_counter.sv | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtl/stats/taxi_stats_counter.sv b/rtl/stats/taxi_stats_counter.sv index a4c4c10..5dc5360 100644 --- a/rtl/stats/taxi_stats_counter.sv +++ b/rtl/stats/taxi_stats_counter.sv @@ -186,7 +186,7 @@ always_comb begin axil_shift_pipeline_next[0] = s_axil_araddr_shift; end else if (s_axis_stat.tvalid && !s_axis_stat.tready && !op_acc_pipe_hazard) begin // accumulate - op_acc_pipe_next[0] = 1'b1; + op_acc_pipe_next[0] = !s_axis_stat.USER_EN || !s_axis_stat.tuser; s_axis_stat_tready_next = 1'b1;