Compare commits

...

2 Commits

Author SHA1 Message Date
codlifedz22
05be48bd93
Merge 4a65fd9221103ff03864337453c238e65d1f4a1b into f09f5fa321f5a421704136c0463b1eaca6557712 2025-02-18 20:50:19 +08:00
oyzh
4a65fd9221 fix an args description. 2025-02-15 11:02:28 +08:00

View File

@ -87,7 +87,7 @@ def weight_dequant(x: torch.Tensor, s: torch.Tensor, block_size: int = 128) -> t
Args:
x (torch.Tensor): The quantized weight tensor of shape (M, N).
s (torch.Tensor): The scale tensor of shape (M, N).
s (torch.Tensor): The scale tensor of shape (M//block_size, N//block_size).
block_size (int, optional): The block size to use for dequantization. Defaults to 128.
Returns: