mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-04-21 14:52:20 +00:00
# What does this PR do? <!-- Congratulations! You've made it this far! You're not quite done yet though. Once merged, your PR is going to appear in the release notes with the title you set, so make sure it's a great title that fully reflects the extent of your awesome contribution. Then, please replace this with a description of the change and which issue is fixed (if applicable). Please also include relevant motivation and context. List any dependencies (if any) that are required for this change. Once you're done, someone will review your PR shortly (see the section "Who can review?" below to tag some potential reviewers). They may suggest changes to make the code even better. If no one reviewed your PR after a week has passed, don't hesitate to post a new comment @-mentioning the same persons---sometimes notifications get lost. --> <!-- Remove if not applicable --> Fixes # (issue) ## Before submitting - [ ] This PR fixes a typo or improves the docs (you can dismiss the other checks if that's the case). - [ ] Did you read the [contributor guideline](https://github.com/huggingface/transformers/blob/main/CONTRIBUTING.md#start-contributing-pull-requests), Pull Request section? - [ ] Was this discussed/approved via a Github issue or the [forum](https://discuss.huggingface.co/)? Please add a link to it if that's the case. - [ ] Did you make sure to update the documentation with your changes? Here are the [documentation guidelines](https://github.com/huggingface/transformers/tree/main/docs), and [here are tips on formatting docstrings](https://github.com/huggingface/transformers/tree/main/docs#writing-source-documentation). - [ ] Did you write any new necessary tests? ## Who can review? Anyone in the community is free to review the PR once the tests have passed. Feel free to tag members/contributors who may be interested in your PR. <!-- Your PR will be replied to more quickly if you can figure out the right person to tag with @ @OlivierDehaene OR @Narsil -->
98 lines
3.3 KiB
Python
98 lines
3.3 KiB
Python
import torch
|
|
from typing import List
|
|
|
|
|
|
AWQ_PACK_ORDER = [0, 2, 4, 6, 1, 3, 5, 7]
|
|
REVERSE_AWQ_PACK_ORDER = [0, 4, 1, 5, 2, 6, 3, 7]
|
|
|
|
|
|
def pack(imatrix: torch.Tensor, direction: str = "column"):
|
|
"""
|
|
Packs a 4-bit integer matrix into a packed 32-bit integer matrix.
|
|
Args:
|
|
imatrix (torch.Tensor): matrix of integers
|
|
direction (str): direction of packing, either "column" or "row"
|
|
Returns:
|
|
qmatrix (torch.Tensor): packed matrix of integers
|
|
"""
|
|
shifts = torch.arange(0, 32, 4, dtype=torch.int32, device=imatrix.device)
|
|
|
|
imatrix = imatrix.to(torch.int8) & 0x0F # eventually correct overflow
|
|
|
|
if direction == "column":
|
|
imatrix = imatrix.view(-1, imatrix.shape[1] // (32 // 4), (32 // 4))
|
|
qmatrix = torch.bitwise_left_shift(imatrix, shifts[None, None, :]).sum(dim=-1)
|
|
|
|
elif direction == "row":
|
|
imatrix = imatrix.view(imatrix.shape[0] // (32 // 4), (32 // 4), -1)
|
|
qmatrix = torch.bitwise_left_shift(imatrix, shifts[None, :, None]).sum(dim=1)
|
|
|
|
qmatrix = qmatrix.to(torch.int32)
|
|
|
|
return qmatrix
|
|
|
|
|
|
def unpack(qmatrix: torch.Tensor, direction: str = "column"):
|
|
"""
|
|
Unpacks a 32-bit packed integer matrix into a 4-bit integer matrix.
|
|
Args:
|
|
qmatrix (torch.Tensor): matrix of packed integers
|
|
direction (str): direction of unpacking, either "column" or "row"
|
|
Returns:
|
|
imatrix (torch.Tensor): matrix of integers
|
|
"""
|
|
shifts = torch.arange(0, 32, 4, device=qmatrix.device)
|
|
|
|
if direction == "column":
|
|
imatrix = torch.bitwise_right_shift(
|
|
qmatrix[:, :, None], shifts[None, None, :]
|
|
).view(qmatrix.shape[0], -1)
|
|
|
|
elif direction == "row":
|
|
imatrix = torch.bitwise_right_shift(
|
|
qmatrix[:, None, :], shifts[None, :, None]
|
|
).view(-1, qmatrix.shape[-1])
|
|
|
|
imatrix = imatrix.to(torch.int8) & 0x0F # eventually correct overflow
|
|
|
|
return imatrix
|
|
|
|
|
|
def apply_order(
|
|
imatrix: torch.Tensor,
|
|
direction: str = "column",
|
|
order: List[int] = AWQ_PACK_ORDER,
|
|
):
|
|
"""
|
|
Applies the order to a 4-bit integer matrix.
|
|
Args:
|
|
imatrix (torch.Tensor): matrix of integers
|
|
direction (str): direction of applying order, either "column" or "row"
|
|
order (List[int]): order to apply, default is AWQ_PACK_ORDER
|
|
Returns:
|
|
imatrix (torch.Tensor): matrix of integers
|
|
"""
|
|
if direction == "column":
|
|
imatrix = imatrix.view(-1, (32 // 4))[:, order].view(imatrix.shape)
|
|
elif direction == "row":
|
|
imatrix = imatrix.view((32 // 4), -1)[order, :].view(imatrix.shape)
|
|
|
|
return imatrix
|
|
|
|
|
|
def fast_awq_to_gptq(qweight, qzeros):
|
|
# awq uses column packing for both weights and zeros
|
|
izeros = unpack(qzeros, direction="column")
|
|
iweights = unpack(qweight, direction="column")
|
|
|
|
# Reverse the order of the iweight and izeros tensors
|
|
izeros = apply_order(izeros, direction="column", order=REVERSE_AWQ_PACK_ORDER)
|
|
iweights = apply_order(iweights, direction="column", order=REVERSE_AWQ_PACK_ORDER)
|
|
# Subtract 1 from the izeros tensor (gptq adds 1 to the zeros)
|
|
izeros = izeros - 1
|
|
# exllama uses row packing for weights and column packing for zeros
|
|
qzeros = pack(izeros, direction="column")
|
|
qweight = pack(iweights, direction="row")
|
|
|
|
return qweight, qzeros
|