Skip to content

Commit c7b6982

Browse files
committed
add logging
1 parent dc9fd92 commit c7b6982

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

backends/qualcomm/scripts/download_qnn_sdk.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,8 @@ def install_qnn_sdk() -> bool:
440440
Returns:
441441
True if both steps succeeded (or were already satisfied), else False.
442442
"""
443-
ok_libc = check_glibc_exist_and_validate()
444-
ok_libcxx = _ensure_libcxx_stack()
445-
ok_qnn = _ensure_qnn_sdk_lib()
446-
return bool(ok_qnn and ok_libcxx and ok_libc)
443+
if check_glibc_exist_and_validate():
444+
if _ensure_libcxx_stack():
445+
if _ensure_qnn_sdk_lib():
446+
return True
447+
return False

0 commit comments

Comments
 (0)