Fix bug in coalescing TCC per channel counters

Signed-off-by: coleramos425 <colramos@amd.com>
Этот коммит содержится в:
coleramos425
2024-01-15 16:47:59 -06:00
коммит произвёл Cole Ramos
родитель 8534cec3a6
Коммит ff09288c83
+1 -1
Просмотреть файл
@@ -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