Files
unslothai--unsloth/tests/version_compat/test_bitsandbytes_pinned_symbols.py
T
wehub-resource-sync e93507a09c
Lockfile supply-chain audit / lockfile supply-chain audit (push) Has been cancelled
Windows Studio GGUF CI / GPU prebuilt resolves without Visual Studio (push) Has been cancelled
Windows Studio GGUF CI / setup.ps1 unit tests (VS 2026 / CMake guard) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2022) (push) Has been cancelled
Windows Studio GGUF CI / real-VS detection (VS 2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-2025-vs2026) (push) Has been cancelled
Windows Studio GGUF CI / VC++ runtime detect + install round-trip (windows-latest) (push) Has been cancelled
Windows Studio Update CI / Studio Updating Tests (push) Has been cancelled
Wheel CI / Wheel build + content sanity + import smoke (push) Has been cancelled
Lint CI / Source lint (Python + shell + YAML + JSON + safety nets) (push) Has been cancelled
MLX CI on Mac M1 / dispatch (push) Has been cancelled
Security audit / advisory audit (pip + npm + cargo) (push) Has been cancelled
Security audit / pip scan-packages :: extras (push) Has been cancelled
Security audit / pip scan-packages :: studio (push) Has been cancelled
Security audit / pip scan-packages :: hf-stack (push) Has been cancelled
Security audit / npm scan-packages (Studio frontend tarballs) (push) Has been cancelled
Security audit / workflow-trigger lint (pull_request_target / cache-poisoning) (push) Has been cancelled
Security audit / pytest tests/security (push) Has been cancelled
Security audit / npm provenance + new install-script diff (push) Has been cancelled
Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Backend CI / (Python 3.10) (push) Has been cancelled
Backend CI / (Python 3.11) (push) Has been cancelled
Backend CI / (Python 3.12) (push) Has been cancelled
Backend CI / (Python 3.13) (push) Has been cancelled
Backend CI / Repo tests (CPU) (push) Has been cancelled
Frontend CI / Frontend build + bundle sanity (push) Has been cancelled
Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Mac Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Mac Studio GGUF CI / JSON, images (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-14) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26) (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-15-intel) (push) Has been cancelled
Mac Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Mac Studio Install Matrix CI / Install + load (macos-26-intel) (push) Has been cancelled
Mac Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Tauri CI / Tauri Linux debug build (no codesign) (push) Has been cancelled
Mac Studio Update CI / Studio Updating Tests (push) Has been cancelled
Studio UI CI / Chat UI Tests (push) Has been cancelled
Windows Studio API CI / Studio API & Auth Tests (push) Has been cancelled
Windows Studio UI CI / Chat UI Tests (push) Has been cancelled
Studio Update CI / Studio Updating Tests (push) Has been cancelled
Core / Core (HF=default + TRL=default) (push) Has been cancelled
Core / Core (HF=4.57.6 + TRL<1) (push) Has been cancelled
Core / Core (HF=latest + TRL=latest) (push) Has been cancelled
Core / llama.cpp build + smoke (push) Has been cancelled
Windows Studio GGUF CI / OpenAI, Anthropic API tests (push) Has been cancelled
Windows Studio GGUF CI / Tool calling Tests (push) Has been cancelled
Windows Studio GGUF CI / JSON, images (push) Has been cancelled
Windows Studio GGUF CI / Studio install + inference without Visual Studio (push) Has been cancelled
Studio export capability / capability (macos-latest) (push) Has been cancelled
Studio export capability / capability (ubuntu-latest) (push) Has been cancelled
Studio export capability / capability (windows-latest) (push) Has been cancelled
Cross-platform parity / parity (macos-latest) (push) Has been cancelled
Cross-platform parity / parity (windows-latest) (push) Has been cancelled
Scorecard supply-chain security / Scorecard analysis (push) Has been cancelled
Studio load-orchestrator CI / test (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:59:56 +08:00

239 lines
9.0 KiB
Python

# SPDX-License-Identifier: AGPL-3.0-only
# Copyright 2026-present the Unsloth AI Inc. team.
"""Pinned-symbol compat check across bitsandbytes minor versions via GitHub raw fetch + symbol grep."""
from __future__ import annotations
import re
import pytest
from tests.version_compat._fetch import fetch_text, first_match, has_def
# pyproject pin: bitsandbytes>=0.45.5,!=0.46.0,!=0.48.0
# Test floor + each safe minor since.
BNB_TAGS = [
"0.45.5",
"0.47.0", # skip 0.46.0 (broken)
"0.49.2", # skip 0.48.0 (broken)
"main",
]
# bnb.functional dequantize_4bit / quantize_4bit: the public 4-bit surface unsloth kernels call into.
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_functional_4bit(tag: str):
candidates = [
"bitsandbytes/functional.py",
"bitsandbytes/functional/__init__.py",
]
hit = first_match("bitsandbytes-foundation/bitsandbytes", tag, candidates)
assert hit is not None, f"{tag}: bitsandbytes/functional[.py|/__init__.py] both missing"
_, src = hit
needed = ("dequantize_4bit", "quantize_4bit")
missing = [n for n in needed if not has_def(src, n, "func") and n not in src]
assert not missing, (
f"{tag}: bnb.functional missing {missing}; " f"unsloth-zoo dequant kernels rely on these"
)
# bnb.nn.Linear4bit / Params4bit: peft + unsloth isinstance-check these; renaming breaks 4-bit LoRA.
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_nn_linear4bit_classes(tag: str):
candidates = [
"bitsandbytes/nn/modules.py",
"bitsandbytes/nn/__init__.py",
]
found_linear = False
found_params = False
for p in candidates:
src = fetch_text("bitsandbytes-foundation/bitsandbytes", tag, p)
if src is None:
continue
if has_def(src, "Linear4bit", "class") or "Linear4bit" in src:
found_linear = True
if has_def(src, "Params4bit", "class") or "Params4bit" in src:
found_params = True
if found_linear and found_params:
return
pytest.fail(
f"{tag}: Linear4bit={found_linear} Params4bit={found_params} "
f"in {candidates}; unsloth + peft 4-bit isinstance checks fail"
)
# Coverage extension (2026-05): every bnb symbol unsloth + unsloth-zoo touch.
# Top-level export: unsloth/kernels/utils.py + zoo vllm_utils.py call bnb.matmul_4bit(...).
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_matmul_4bit_top_level(tag: str):
src = fetch_text("bitsandbytes-foundation/bitsandbytes", tag, "bitsandbytes/__init__.py")
if src is None:
pytest.skip(f"{tag}: bitsandbytes/__init__.py missing")
assert "matmul_4bit" in src, (
f"{tag}: bitsandbytes.matmul_4bit not exported at package root; "
f"unsloth/kernels/utils.py + zoo/temporary_patches/moe call paths break"
)
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_functional_4bit_kernel_path(tag: str):
"""bnb.functional must expose either the legacy `lib.c*` kernels or the new `torch.ops.bitsandbytes.*` path."""
candidates = [
"bitsandbytes/functional.py",
"bitsandbytes/functional/__init__.py",
]
hit = first_match("bitsandbytes-foundation/bitsandbytes", tag, candidates)
if hit is None:
pytest.skip(f"{tag}: bitsandbytes/functional missing")
_, src = hit
legacy_path = "cdequantize_blockwise" in src and "cgemm_4bit_inference" in src
new_path = (
"dequantize_blockwise" in src
and ("dequantize_4bit" in src or "dequantize_nf4" in src)
and "torch.ops.bitsandbytes" in src
)
assert legacy_path or new_path, (
f"{tag}: bnb.functional has NEITHER legacy `lib.cdequantize_*` "
f"NOR new `torch.ops.bitsandbytes.*` kernel path; "
f"unsloth/kernels/utils.py module-top binding will AttributeError"
)
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_functional_get_ptr(tag: str):
"""unsloth/kernels/utils.py top-level: `get_ptr = bnb.functional.get_ptr`."""
candidates = [
"bitsandbytes/functional.py",
"bitsandbytes/functional/__init__.py",
]
hit = first_match("bitsandbytes-foundation/bitsandbytes", tag, candidates)
if hit is None:
pytest.skip(f"{tag}: functional missing")
_, src = hit
assert has_def(src, "get_ptr", "func") or "get_ptr" in src, (
f"{tag}: bnb.functional.get_ptr missing; "
f"unsloth/kernels/utils.py module-top ImportError"
)
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_quantstate_from_dict(tag: str):
"""unsloth-zoo rebinds QuantState.from_dict; both class and classmethod must be present."""
candidates = [
"bitsandbytes/functional.py",
"bitsandbytes/functional/__init__.py",
]
hit = first_match("bitsandbytes-foundation/bitsandbytes", tag, candidates)
if hit is None:
pytest.skip(f"{tag}: functional missing")
_, src = hit
assert has_def(src, "QuantState", "class"), f"{tag}: bnb.functional.QuantState missing"
assert "from_dict" in src, (
f"{tag}: QuantState.from_dict missing; " f"unsloth-zoo monkey-patch silently no-ops"
)
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_nn_modules_fix_4bit_weight_optional(tag: str):
"""fix_4bit_weight_quant_state_from_module is optional; unsloth getattr-fallbacks on older bnb."""
src = fetch_text("bitsandbytes-foundation/bitsandbytes", tag, "bitsandbytes/nn/modules.py")
if src is None:
pytest.skip(f"{tag}: bitsandbytes/nn/modules.py missing")
if "fix_4bit_weight_quant_state_from_module" not in src:
pytest.skip(f"{tag}: helper not yet added (OK; getattr fallback)")
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_nn_linear8bitlt(tag: str):
"""unsloth/__init__ probes both Linear4bit AND Linear8bitLt."""
candidates = [
"bitsandbytes/nn/modules.py",
"bitsandbytes/nn/__init__.py",
]
for p in candidates:
src = fetch_text("bitsandbytes-foundation/bitsandbytes", tag, p)
if src and (has_def(src, "Linear8bitLt", "class") or "Linear8bitLt" in src):
return
pytest.fail(
f"{tag}: bnb.nn.Linear8bitLt missing in {candidates}; " f"legacy load_in_8bit path breaks"
)
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_optim_optimizer2state(tag: str):
"""PagedAdamW32bit + 8bit optimisers subclass Optimizer2State."""
src = fetch_text(
"bitsandbytes-foundation/bitsandbytes",
tag,
"bitsandbytes/optim/optimizer.py",
)
if src is None:
pytest.skip(f"{tag}: bitsandbytes/optim/optimizer.py missing")
assert has_def(
src, "Optimizer2State", "class"
), f"{tag}: bnb.optim.optimizer.Optimizer2State missing"
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_utils_pack_unpack(tag: str):
"""4bit state-dict save/load uses these two helpers."""
src = fetch_text("bitsandbytes-foundation/bitsandbytes", tag, "bitsandbytes/utils.py")
if src is None:
pytest.skip(f"{tag}: bitsandbytes/utils.py missing")
for name in ("pack_dict_to_tensor", "unpack_tensor_to_dict"):
assert has_def(src, name, "func") or name in src, f"{tag}: bnb.utils.{name} missing"
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_cextension_rocm_warp_size_optional(tag: str):
"""ROCM_WARP_SIZE_64 is optional (pre-ROCm bnb lacks it); unsloth probes via try/except."""
src = fetch_text("bitsandbytes-foundation/bitsandbytes", tag, "bitsandbytes/cextension.py")
if src is None:
pytest.skip(f"{tag}: cextension.py missing")
if "ROCM_WARP_SIZE_64" not in src:
pytest.skip(f"{tag}: ROCM_WARP_SIZE_64 not yet defined (pre-ROCm bnb)")
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_autograd_functions_matmul_4bit(tag: str):
"""bnb.autograd._functions.matmul_4bit must remain (unsloth-zoo has a dynamo-disable patch site)."""
src = fetch_text(
"bitsandbytes-foundation/bitsandbytes",
tag,
"bitsandbytes/autograd/_functions.py",
)
if src is None:
pytest.skip(f"{tag}: bitsandbytes/autograd/_functions.py missing")
assert "matmul_4bit" in src, f"{tag}: bnb.autograd._functions.matmul_4bit missing"
@pytest.mark.parametrize("tag", BNB_TAGS)
def test_bnb_version_parseable(tag: str):
"""bnb.__version__ must be exported via at least one mechanism (unsloth feature-gates on it)."""
src = fetch_text("bitsandbytes-foundation/bitsandbytes", tag, "bitsandbytes/__init__.py")
if src is None:
pytest.skip(f"{tag}: bitsandbytes/__init__.py missing")
has_literal = bool(re.search(r'^__version__\s*=\s*["\']', src, re.MULTILINE))
has_subimport = bool(re.search(r"^from\s+\.version\s+import\s+__version__", src, re.MULTILINE))
has_metadata = bool(
re.search(
r"^from\s+importlib\.metadata\s+import\s+(?:[\w,\s]+,\s*)?version",
src,
re.MULTILINE,
)
and re.search(r"^\s*__version__\s*=\s*version\s*\(", src, re.MULTILINE)
)
has_version_attr = "__version__" in src
assert (
has_literal or has_subimport or has_metadata or has_version_attr
), f"{tag}: bnb.__version__ not exported"