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 8d1096e commit 7e1665bCopy full SHA for 7e1665b
vllm/utils/__init__.py
@@ -2799,7 +2799,7 @@ def find_unimplemented_methods(self: object):
2799
if unimplemented_methods:
2800
method_names = ','.join(unimplemented_methods)
2801
msg = (f"Methods {method_names} not implemented in {self}")
2802
- logger.warning(msg)
+ logger.debug(msg)
2803
2804
@wraps(original_init)
2805
def wrapped_init(self, *args, **kwargs) -> None:
@@ -3005,4 +3005,4 @@ def has_deep_ep() -> bool:
3005
def has_deep_gemm() -> bool:
3006
"""Whether the optional `deep_gemm` package is available."""
3007
3008
- return _has_module("deep_gemm")
+ return _has_module("deep_gemm")
0 commit comments