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
5bf185a1
You need to sign in or sign up before continuing.
Unverified
Commit
5bf185a1
authored
May 29, 2024
by
Alexander Matveev
Committed by
GitHub
May 30, 2024
Browse files
[Bugfix] gptq_marlin: Ensure g_idx_sort_indices is not a Parameter (#5108)
parent
4fbcb0f2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
vllm/model_executor/layers/quantization/gptq_marlin.py
vllm/model_executor/layers/quantization/gptq_marlin.py
+4
-8
No files found.
vllm/model_executor/layers/quantization/gptq_marlin.py
View file @
5bf185a1
...
@@ -298,14 +298,10 @@ class GPTQMarlinLinearMethod(LinearMethodBase):
...
@@ -298,14 +298,10 @@ class GPTQMarlinLinearMethod(LinearMethodBase):
},
},
)
)
g_idx_sort_indices
=
Parameter
(
g_idx_sort_indices
=
torch
.
empty
(
torch
.
empty
(
g_idx
.
shape
,
g_idx
.
shape
,
dtype
=
torch
.
int32
,
dtype
=
torch
.
int32
,
),
requires_grad
=
False
,
)
)
set_weight_attrs
(
g_idx_sort_indices
,
extra_weight_attrs
)
# Scales
# Scales
scales
=
Parameter
(
scales
=
Parameter
(
...
@@ -356,9 +352,9 @@ class GPTQMarlinLinearMethod(LinearMethodBase):
...
@@ -356,9 +352,9 @@ class GPTQMarlinLinearMethod(LinearMethodBase):
layer
.
register_parameter
(
"qweight"
,
qweight
)
layer
.
register_parameter
(
"qweight"
,
qweight
)
layer
.
register_parameter
(
"g_idx"
,
g_idx
)
layer
.
register_parameter
(
"g_idx"
,
g_idx
)
layer
.
register_parameter
(
"g_idx_sort_indices"
,
g_idx_sort_indices
)
layer
.
register_parameter
(
"scales"
,
scales
)
layer
.
register_parameter
(
"scales"
,
scales
)
layer
.
register_parameter
(
"qzeros"
,
qzeros
)
layer
.
register_parameter
(
"qzeros"
,
qzeros
)
layer
.
g_idx_sort_indices
=
g_idx_sort_indices
layer
.
workspace
=
workspace
layer
.
workspace
=
workspace
layer
.
input_size_per_partition
=
input_size_per_partition
layer
.
input_size_per_partition
=
input_size_per_partition
layer
.
output_size_per_partition
=
output_size_per_partition
layer
.
output_size_per_partition
=
output_size_per_partition
...
...
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