From 134ac2d9dec640ee1047e6a220ec2d65aa1815d8 Mon Sep 17 00:00:00 2001 From: "Baraldi, Giovanni" Date: Thu, 29 May 2025 22:34:07 +0200 Subject: [PATCH] [rocprofv3] Fix ATT library path (#425) Fix rocprofv3 `--att-library-path` option Co-authored-by: Giovanni Baraldi --- source/bin/rocprofv3.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/bin/rocprofv3.py b/source/bin/rocprofv3.py index 9655ab54b5..ebaabc44f2 100755 --- a/source/bin/rocprofv3.py +++ b/source/bin/rocprofv3.py @@ -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