We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bedaadb commit 063d3c8Copy full SHA for 063d3c8
backends/qualcomm/scripts/download_qnn_sdk.py
@@ -51,7 +51,7 @@ def check_glibc_exist() -> bool:
51
if not exists:
52
logger.error(
53
r""""
54
- glibc not found. Please install glibc following the commands below.
+ [QNN] glibc not found. Please install glibc following the commands below.
55
Ubuntu/Debian:
56
sudo apt update
57
sudo apt install libc6
@@ -144,7 +144,7 @@ def _download_qnn_sdk(dst_folder=SDK_DIR) -> Optional[pathlib.Path]:
144
)
145
QAIRT_CONTENT_DIR = f"qairt/{QNN_VERSION}"
146
147
- if not is_linux_x86():
+ if not is_linux_x86() and not check_glibc_exist():
148
logger.info("Skipping Qualcomm SDK (only supported on Linux x86).")
149
return None
150
else:
0 commit comments