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
9b103a1d
Unverified
Commit
9b103a1d
authored
May 02, 2025
by
Eric Hartford
Committed by
GitHub
May 02, 2025
Browse files
fix typo in logging (#17605)
parent
b90b0852
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
vllm/model_executor/layers/quantization/awq_marlin.py
vllm/model_executor/layers/quantization/awq_marlin.py
+1
-1
vllm/model_executor/layers/quantization/gptq_marlin.py
vllm/model_executor/layers/quantization/gptq_marlin.py
+1
-1
No files found.
vllm/model_executor/layers/quantization/awq_marlin.py
View file @
9b103a1d
...
...
@@ -140,7 +140,7 @@ class AWQMarlinConfig(QuantizationConfig):
from
vllm.model_executor.layers.quantization.moe_wna16
import
(
MoeWNA16Config
)
if
not
check_moe_marlin_supports_layer
(
layer
,
self
.
group_size
):
logger
.
warning_one
(
logger
.
warning_on
c
e
(
f
"Layer '
{
prefix
}
' is not supported by AWQMoeMarlin. "
"Falling back to Moe WNA16 kernels."
)
return
MoeWNA16Config
.
from_config
(
...
...
vllm/model_executor/layers/quantization/gptq_marlin.py
View file @
9b103a1d
...
...
@@ -157,7 +157,7 @@ class GPTQMarlinConfig(QuantizationConfig):
from
vllm.model_executor.layers.quantization.moe_wna16
import
(
MoeWNA16Config
)
if
not
check_moe_marlin_supports_layer
(
layer
,
self
.
group_size
):
logger
.
warning_one
(
logger
.
warning_on
c
e
(
f
"Layer '
{
prefix
}
' is not supported by GPTQMoeMarlin. "
"Falling back to Moe WNA16 kernels."
)
return
MoeWNA16Config
.
from_config
(
...
...
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