File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
backends/qualcomm/scripts Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -180,15 +180,16 @@ def _download_qnn_sdk(dst_folder=SDK_DIR) -> Optional[pathlib.Path]:
180180 f"Qualcomm_AI_Runtime_Community/All/{ QNN_VERSION } /v{ QNN_VERSION } .zip"
181181 )
182182 QAIRT_CONTENT_DIR = f"qairt/{ QNN_VERSION } "
183-
183+ res = check_glibc_exist_and_validate ()
184+ print ("[QNN] check_glibc_exist_and_validate result: " , res )
184185 if not is_linux_x86 ():
185- logger .info ("Skipping Qualcomm SDK (only supported on Linux x86)." )
186+ logger .info ("[QNN] Skipping Qualcomm SDK (only supported on Linux x86)." )
186187 return None
187188 elif not check_glibc_exist_and_validate ():
188- logger .info ("Skipping Qualcomm SDK (glibc not found or version too old)." )
189+ logger .info ("[QNN] Skipping Qualcomm SDK (glibc not found or version too old)." )
189190 return None
190191 else :
191- logger .info ("Downloading Qualcomm SDK for Linux x86" )
192+ logger .info ("[QNN] Downloading Qualcomm SDK for Linux x86" )
192193
193194 dst_folder .mkdir (parents = True , exist_ok = True )
194195
You can’t perform that action at this time.
0 commit comments