Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
7e1665b0
Unverified
Commit
7e1665b0
authored
Jul 04, 2025
by
Michael Goin
Committed by
GitHub
Jul 04, 2025
Browse files
[Misc] Change warn_for_unimplemented_methods to debug (#20455)
parent
8d1096e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/utils/__init__.py
vllm/utils/__init__.py
+2
-2
No files found.
vllm/utils/__init__.py
View file @
7e1665b0
...
@@ -2799,7 +2799,7 @@ def warn_for_unimplemented_methods(cls: type[T]) -> type[T]:
...
@@ -2799,7 +2799,7 @@ def warn_for_unimplemented_methods(cls: type[T]) -> type[T]:
if
unimplemented_methods
:
if
unimplemented_methods
:
method_names
=
','
.
join
(
unimplemented_methods
)
method_names
=
','
.
join
(
unimplemented_methods
)
msg
=
(
f
"Methods
{
method_names
}
not implemented in
{
self
}
"
)
msg
=
(
f
"Methods
{
method_names
}
not implemented in
{
self
}
"
)
logger
.
warnin
g
(
msg
)
logger
.
debu
g
(
msg
)
@
wraps
(
original_init
)
@
wraps
(
original_init
)
def
wrapped_init
(
self
,
*
args
,
**
kwargs
)
->
None
:
def
wrapped_init
(
self
,
*
args
,
**
kwargs
)
->
None
:
...
@@ -3005,4 +3005,4 @@ def has_deep_ep() -> bool:
...
@@ -3005,4 +3005,4 @@ def has_deep_ep() -> bool:
def
has_deep_gemm
()
->
bool
:
def
has_deep_gemm
()
->
bool
:
"""Whether the optional `deep_gemm` package is available."""
"""Whether the optional `deep_gemm` package is available."""
return
_has_module
(
"deep_gemm"
)
return
_has_module
(
"deep_gemm"
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment