You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
raiseRuntimeError("Unsupported or undefined Ascend SOC version.")
41
-
elifsoc_version!=_build_info.__soc_version__:
42
-
raiseRuntimeError(
43
-
f"Built for SOC version {_build_info.__soc_version__}, but need running on default {soc_version}. Please reinstall vllm-ascend with the default SOC_VERSION."
44
-
)
35
+
try:
36
+
importtorch_npu# type: ignore
37
+
exceptImportError:
38
+
logger.warning("torch_npu not found. Proceeding with CPU testing.")
0 commit comments