[rocprofv3] Fix ATT library path (#425)

Fix rocprofv3 `--att-library-path` option 

Co-authored-by: Giovanni Baraldi <gbaraldi@amd.com>

[ROCm/rocprofiler-sdk commit: 134ac2d9de]
Этот коммит содержится в:
Baraldi, Giovanni
2025-05-29 22:34:07 +02:00
коммит произвёл GitHub
родитель f39871096b
Коммит c82c23559f
+1 -1
Просмотреть файл
@@ -124,7 +124,7 @@ def check_att_capability(args):
for root, dirs, files in os.walk(path, topdown=True):
for itr in files:
if lib_att_name in itr:
args.att_library_path = itr.split(lib_att_name)[0]
args.att_library_path = root
return True
return False