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 cdcd970 commit ded7cf0Copy full SHA for ded7cf0
backends/qualcomm/scripts/download_qnn_sdk.py
@@ -13,7 +13,7 @@
13
from tqdm import tqdm
14
15
SDK_DIR = pathlib.Path(__file__).parent.parent / "sdk" / "qnn"
16
-PKG_ROOT = pathlib.Path(__file__).parent
+PKG_ROOT = pathlib.Path(__file__).parent.parent
17
18
19
def is_linux_x86() -> bool:
@@ -278,7 +278,7 @@ def install_qnn_sdk(force_download: bool = True) -> bool:
278
"""
279
280
# --- Qualcomm SDK handling ---
281
- qnn_sdk_dir = PKG_ROOT / "sdk" / "qnn"
+ qnn_sdk_dir = SDK_DIR
282
print(f"[INIT] qnn_sdk_dir: {qnn_sdk_dir}")
283
if not qnn_sdk_dir.exists():
284
print("[INIT] Qualcomm SDK not found. Downloading...")
0 commit comments