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

Этот коммит содержится в:
Fei Zheng
2025-07-23 15:46:19 -06:00
коммит произвёл GitHub
родитель a70ae40ddc
Коммит 137f35e700
2 изменённых файлов: 11 добавлений и 10 удалений
+2 -1
Просмотреть файл
@@ -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
+9 -9
Просмотреть файл
@@ -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: