Merge pull request #155 from arghdos/bf16_flops

fix max BF16 flop rate on CDNA2

[ROCm/rocprofiler-compute commit: c809346b1b]
This commit is contained in:
Cole Ramos
2023-08-03 15:36:45 -07:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
File diff suppressed because one or more lines are too long
@@ -45,9 +45,9 @@ Panel Config:
MFMA FLOPs (BF16):
value: AVG(((SQ_INSTS_VALU_MFMA_MOPS_BF16 * 512) / (EndNs - BeginNs)))
unit: GFLOP
peak: ((($sclk * $numCU) * 512) / 1000)
peak: ((($sclk * $numCU) * 1024) / 1000)
pop: ((100 * AVG(((SQ_INSTS_VALU_MFMA_MOPS_BF16 * 512) / (EndNs - BeginNs))))
/ ((($sclk * $numCU) * 512) / 1000))
/ ((($sclk * $numCU) * 1024) / 1000))
tips:
MFMA FLOPs (F16):
value: AVG(((SQ_INSTS_VALU_MFMA_MOPS_F16 * 512) / (EndNs - BeginNs)))