Fix L2 read/write/atomic bandwidths on MI350 (#831)

[ROCm/rocprofiler-compute commit: 137f35e700]
This commit is contained in:
Fei Zheng
2025-07-23 15:46:19 -06:00
zatwierdzone przez GitHub
rodzic d9da3feadf
commit b4c626893f
2 zmienionych plików z 11 dodań i 10 usunięć
@@ -96,7 +96,8 @@ Full documentation for ROCm Compute Profiler is available at [https://rocm.docs.
* Fixed not collecting TCC channel counters in rocprof v3
* Fixed peak FLOPS of F8 I8 F16 and BF16 on MI300
* Fixed not detecting memory clock issue when using amd-smi
* Fix standalone GUI crashing
* Fixed standalone GUI crashing
* Fixed L2 read/write/atomic bandwidths on MI350
### Known issues
@@ -183,21 +183,21 @@ Panel Config:
unit: (Bytes + $normUnit)
tips:
Read Bandwidth:
avg: AVG(TCC_READ_SECTORS_sum / $denom)
min: MIN(TCC_READ_SECTORS_sum / $denom)
max: MAX(TCC_READ_SECTORS_sum / $denom)
avg: AVG(TCC_READ_SECTORS_sum * 32 / $denom)
min: MIN(TCC_READ_SECTORS_sum * 32 / $denom)
max: MAX(TCC_READ_SECTORS_sum * 32 / $denom)
unit: (Bytes + $normUnit)
tips:
Write Bandwidth:
avg: AVG(TCC_WRITE_SECTORS_sum / $denom)
min: MIN(TCC_WRITE_SECTORS_sum / $denom)
max: MAX(TCC_WRITE_SECTORS_sum / $denom)
avg: AVG(TCC_WRITE_SECTORS_sum * 32 / $denom)
min: MIN(TCC_WRITE_SECTORS_sum * 32 / $denom)
max: MAX(TCC_WRITE_SECTORS_sum * 32 / $denom)
unit: (Bytes + $normUnit)
tips:
Atomic Bandwidth:
avg: AVG(TCC_ATOMIC_SECTORS_sum / $denom)
min: MIN(TCC_ATOMIC_SECTORS_sum / $denom)
max: MAX(TCC_ATOMIC_SECTORS_sum / $denom)
avg: AVG(TCC_ATOMIC_SECTORS_sum * 32 / $denom)
min: MIN(TCC_ATOMIC_SECTORS_sum * 32 / $denom)
max: MAX(TCC_ATOMIC_SECTORS_sum * 32 / $denom)
unit: (Bytes + $normUnit)
tips:
Req: