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 72c62ea commit 6eaf930Copy full SHA for 6eaf930
vllm/platforms/__init__.py
@@ -106,6 +106,9 @@ def rocm_platform_plugin() -> Optional[str]:
106
if len(amdsmi.amdsmi_get_processor_handles()) > 0:
107
is_rocm = True
108
logger.debug("Confirmed ROCm platform is available.")
109
+ else:
110
+ logger.debug("ROCm platform is not available because"
111
+ " no GPU is found.")
112
finally:
113
amdsmi.amdsmi_shut_down()
114
except Exception as e:
0 commit comments