Fix bug in coalescing TCC per channel counters

Signed-off-by: coleramos425 <colramos@amd.com>
This commit is contained in:
coleramos425
2024-01-15 16:47:59 -06:00
committed by Cole Ramos
parent 8534cec3a6
commit ff09288c83
+1 -1
View File
@@ -363,7 +363,7 @@ def perfmon_emit(pmc_list, perfmon_config, workload_dir=None):
# TCC per-channel counters
tcc_counters = []
for ch in range(perfmon_config["TCC_channels"]):
tcc_counters = pmc_list["TCC2"][str(ch)][tcc2_index * N : tcc2_index * N + N]
tcc_counters += pmc_list["TCC2"][str(ch)][tcc2_index * N : tcc2_index * N + N]
tcc2_index += 1