Set rocprofV3 agent-index to absolute (#675)

Signed-off-by: Daniel Su <danielsu@amd.com>

[ROCm/rocprofiler-compute commit: b77fcf575e]
This commit is contained in:
Daniel Su
2025-04-28 15:38:07 -04:00
gecommit door GitHub
bovenliggende af114a1539
commit 935e2b53b8
@@ -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