Merge 4a65fd9221103ff03864337453c238e65d1f4a1b into 592fd5daf8177b205af11651bbb31a1834a8b0e0

This commit is contained in:
codlifedz22 2025-02-24 00:59:58 -05:00 committed by GitHub
commit b612a1cc10
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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: