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
f37e8938
Unverified
Commit
f37e8938
authored
Dec 01, 2025
by
Fanli Lin
Committed by
GitHub
Dec 01, 2025
Browse files
[XPU] Fix AWQ skipped layer detection in IPEX quantization (#29774)
Signed-off-by:
Fanli Lin
<
fanli.lin@intel.com
>
parent
f0a28bf6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
vllm/model_executor/layers/quantization/ipex_quant.py
vllm/model_executor/layers/quantization/ipex_quant.py
+4
-1
No files found.
vllm/model_executor/layers/quantization/ipex_quant.py
View file @
f37e8938
...
@@ -150,7 +150,10 @@ class IPEXConfig(QuantizationConfig):
...
@@ -150,7 +150,10 @@ class IPEXConfig(QuantizationConfig):
if
isinstance
(
layer
,
LinearBase
):
if
isinstance
(
layer
,
LinearBase
):
if
self
.
method
==
"awq"
:
if
self
.
method
==
"awq"
:
if
is_layer_skipped
(
if
is_layer_skipped
(
prefix
,
self
.
modules_to_not_convert
,
self
.
packed_modules_mapping
prefix
,
self
.
modules_to_not_convert
,
self
.
packed_modules_mapping
,
skip_with_substr
=
True
,
):
):
return
UnquantizedLinearMethod
()
return
UnquantizedLinearMethod
()
return
IPEXAWQLinearMethod
(
self
)
return
IPEXAWQLinearMethod
(
self
)
...
...
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