cddb07a176
docs / deploy (push) Has been cancelled
docs / changes (push) Has been cancelled
docs / check-and-build (push) Has been cancelled
build container image / cpu (push) Has been cancelled
build container image / cuda (push) Has been cancelled
build container image / rocm (push) Has been cancelled
frontend checks / frontend-checks (push) Has been cancelled
frontend tests / frontend-tests (push) Has been cancelled
lfs checks / lfs-check (push) Has been cancelled
python checks / python-checks (push) Has been cancelled
python tests / py3.12: macos-default (push) Has been cancelled
python tests / py3.11: windows-cpu (push) Has been cancelled
python tests / py3.12: windows-cpu (push) Has been cancelled
python tests / py3.11: linux-cpu (push) Has been cancelled
typegen checks / typegen-checks (push) Has been cancelled
uv lock checks / uv-lock-checks (push) Has been cancelled
openapi checks / openapi-checks (push) Has been cancelled
python tests / py3.11: macos-default (push) Has been cancelled
python tests / py3.12: linux-cpu (push) Has been cancelled
20 lines
699 B
Python
20 lines
699 B
Python
import torch
|
|
|
|
try:
|
|
from bitsandbytes.nn.modules import Params4bit
|
|
|
|
bnb_available: bool = True
|
|
except ImportError:
|
|
bnb_available: bool = False
|
|
|
|
|
|
def get_param_shape(param: torch.Tensor) -> torch.Size:
|
|
"""A helper function to get the shape of a parameter that handles `bitsandbytes.nn.Params4Bit` correctly."""
|
|
# Accessing the `.shape` attribute of `bitsandbytes.nn.Params4Bit` will return an incorrect result. Instead, we must
|
|
# access the `.quant_state.shape` attribute.
|
|
if bnb_available and type(param) is Params4bit: # type: ignore
|
|
quant_state = param.quant_state
|
|
if quant_state is not None:
|
|
return quant_state.shape
|
|
return param.shape
|