mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-16 16:25:01 +08:00
[Bugfix] Convert untraceable GroupShape to list for AMD impl (#26535)
Signed-off-by: Lucas Kabela <lucaskabela@meta.com>
This commit is contained in:
parent
784c231151
commit
213b64452a
@ -360,7 +360,7 @@ class W8A8BlockFp8LinearOp:
|
|||||||
weight,
|
weight,
|
||||||
input_scale,
|
input_scale,
|
||||||
weight_scale,
|
weight_scale,
|
||||||
self.weight_group_shape,
|
list(self.weight_group_shape),
|
||||||
input_2d.dtype,
|
input_2d.dtype,
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -377,7 +377,7 @@ class W8A8BlockFp8LinearOp:
|
|||||||
weight,
|
weight,
|
||||||
input_scale,
|
input_scale,
|
||||||
weight_scale,
|
weight_scale,
|
||||||
self.weight_group_shape,
|
list(self.weight_group_shape),
|
||||||
input_2d.dtype,
|
input_2d.dtype,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user