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
1c413105
Unverified
Commit
1c413105
authored
Sep 02, 2025
by
Kyle Sayers
Committed by
GitHub
Sep 02, 2025
Browse files
[Bugfix] Fix transform_config parsing in Compressed Tensors (#23945)
Signed-off-by:
Kyle Sayers
<
kylesayrs@gmail.com
>
parent
c83c4ff8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
vllm/model_executor/layers/quantization/compressed_tensors/compressed_tensors.py
...ers/quantization/compressed_tensors/compressed_tensors.py
+2
-2
No files found.
vllm/model_executor/layers/quantization/compressed_tensors/compressed_tensors.py
View file @
1c413105
...
...
@@ -63,7 +63,7 @@ class CompressedTensorsConfig(QuantizationConfig):
sparsity_ignore_list
:
list
[
str
],
kv_cache_scheme
:
Optional
[
dict
[
str
,
Any
]]
=
None
,
config
:
Optional
[
dict
[
str
,
Any
]]
=
None
,
transform_config
:
Optional
[
TransformConfig
]
=
None
,
transform_config
:
Optional
[
dict
[
str
,
Any
]
]
=
None
,
):
super
().
__init__
()
self
.
ignore
=
ignore
...
...
@@ -75,7 +75,7 @@ class CompressedTensorsConfig(QuantizationConfig):
self
.
sparsity_ignore_list
=
sparsity_ignore_list
self
.
config
=
config
if
transform_config
is
not
None
:
if
transform_config
:
self
.
transform_config
=
TransformConfig
.
model_validate
(
transform_config
)
else
:
...
...
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