Set rocprofV3 agent-index to absolute (#675)

Signed-off-by: Daniel Su <danielsu@amd.com>
This commit is contained in:
Daniel Su
2025-04-28 15:38:07 -04:00
committed by GitHub
szülő 85bfa73e2c
commit b77fcf575e
+4 -2
Fájl megtekintése
@@ -587,8 +587,10 @@ def run_prof(
# standard rocprof options
default_options = ["-i", fname]
options = default_options + profiler_options
if using_v3() and path_counter_config_yaml.exists():
options = ["-E", str(path_counter_config_yaml)] + options
if using_v3():
options = ["-A", "absolute"] + options
if path_counter_config_yaml.exists():
options = ["-E", str(path_counter_config_yaml)] + options
# set required env var for mi300
new_env = None