-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pass accumulate counters to rocprofv3 using -E option (#522)
rocprofv3 has a new -E option where extra counters can be passed (see accum_counters.yaml) instead of defining them in counter_defs.yaml.
- Loading branch information
1 parent
8172bd8
commit 3d02560
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
src/rocprof_compute_soc/profile_configs/accum_counters.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
SQ_IFETCH_LEVEL_ACCUM: | ||
architectures: | ||
gfx942/gfx941/gfx940/gfx90a: | ||
expression: accumulate(SQ_IFETCH_LEVEL, HIGH_RES) | ||
description: 'SQ_IFETCH_LEVEL accumulation' | ||
SQ_INST_LEVEL_LDS_ACCUM: | ||
architectures: | ||
gfx942/gfx941/gfx940/gfx90a: | ||
expression: accumulate(SQ_INST_LEVEL_LDS, HIGH_RES) | ||
description: 'SQ_INST_LEVEL_LDS accumulation' | ||
SQ_INST_LEVEL_SMEM_ACCUM: | ||
architectures: | ||
gfx942/gfx941/gfx940/gfx90a: | ||
expression: accumulate(SQ_INST_LEVEL_SMEM, HIGH_RES) | ||
description: 'SQ_INST_LEVEL_SMEM accumulation' | ||
SQ_INST_LEVEL_VMEM_ACCUM: | ||
architectures: | ||
gfx942/gfx941/gfx940/gfx90a: | ||
expression: accumulate(SQ_INST_LEVEL_VMEM, HIGH_RES) | ||
description: 'SQ_INST_LEVEL_VMEM accumulation' | ||
SQ_LEVEL_WAVES_ACCUM: | ||
architectures: | ||
gfx942/gfx941/gfx940/gfx90a: | ||
expression: accumulate(SQ_LEVEL_WAVES, HIGH_RES) | ||
description: 'SQ_LEVEL_WAVES accumulation' |