2
0

[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]
Este cometimento está contido em:
Baraldi, Giovanni
2025-05-29 22:34:07 +02:00
cometido por GitHub
ascendente f39871096b
cometimento c82c23559f
+1 -1
Ver ficheiro
@@ -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