mirror of
https://github.com/unslothai/unsloth.git
synced 2026-08-25 00:33:49 +00:00
* fix(studio): harden training setup and model loading Scan every model load root before approving remote code, and pin third-party codec sources to verified revisions. Align dataset option validation across the UI and backend, preserve manual drafts, and include edits in training start identity. Require job-scoped stop requests and retain bounded early-cancel tombstones without unsafe eviction. * fix(studio): harden training lifecycle and audio loading Preserve early start cancellations with bounded tombstones and explicit capacity handling for concurrent requests. Pin and verify third-party audio sources and codec artifacts with safe archive extraction and offline cache migration. Keep automatic evaluation data separate from every split included in a combined training instruction. Keep training summaries and GPU progress state aligned with the active configuration through public feature exports. Make route and lifecycle tests deterministic by isolating Hub reachability and executor behavior. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * fix(studio): correct completion masking and offline training Apply Alpaca response markers safely when completion-only training is enabled. Skip optional runtime dependency installs while Studio is offline. Limit causal-conv1d hooks to recognized model families without dropping supported architectures. Disable known-broken TileLang dispatch when offline repair is unavailable. Use cached GGUF and model-size metadata without offline Hub retries. * fix(studio): resolve causal conv kernels from model configs Detect causal-conv1d requirements from resolved model architectures before loading model code. Keep name matching as a fallback while excluding unrelated renamed checkpoints. * fix(studio): preserve registered training cancellation Allow registered start cancellations to reclaim the oldest expiring tombstone when unknown cancellation capacity is full. Preserve the hard capacity limit and 429 response for unregistered request IDs. * Fix reset job scoping, DAC fast path, scan target and subset splits for PR #8103 - /api/train/reset: an unscoped reset could force-terminate a run mid-cancel. The guard now refuses to touch a live run it cannot prove it owns. The field stays optional so pre-rework clients, which POST /reset with no body, keep working. - ensure_dac_speech_weights: install the download into the pinned destination, so later loads hit the fast path instead of re-downloading and re-hashing 295 MB under the install lock. - _requires_security_review_for_model: apply the same load_scan_target alias normalization the sibling remote-code check gained, else the Spark-TTS alias 404s and fails open to "no review needed". - _purge_package_bytecode: best effort. It runs without the install lock over a cache shared by the inference and training workers; 7 of 8 concurrent imports died on it. Also moved inside the try so a failure cannot strand the cache dir on sys.path, and snapshot sys.modules before the origin audit. - commitSubset: clear the backing splits too, else the render-phase draft sync reads the previous subset's split back into the boxes it just reset. - Fix two tests that fail on the branch: the DAC assertion pinned the old return value, and the causal-conv1d assertion matched call formatting. * Make the SSM runtime tests Windows aware ensure_ssm_runtime deliberately skips causal-conv1d on win32 (no prebuilt wheel), so the two install-order assertions only hold off Windows. Caught on a real windows-latest runner. * Update two frontend source contracts the branch moved - captureTrainingStartInputs now delegates to createTrainingStartInputIdentity, so the normalize/flags assertions belong against training-start-inputs.ts. - resetTraining takes a RequiredTrainingJobScope and always sends the body, which is stronger than the hasScope branch the contract pinned. Both fail on the branch today; caught by tests/studio, which the studio backend job does not cover. * Fix unscoped reset compat, pyc purge fail-open and DAC fallback for PR #8103 Corrects four things in my earlier commits on this branch. Unscoped /api/train/reset returned "superseded" (HTTP 200) for a live run. The pre-rework cancel dialog chains stopTrainingRun then a bodyless reset, so an older client read that 200 as success and cleared its UI while training kept running. Return "active" (409) instead: same answer a live run already gives, and one those clients already handle. It still never force-terminates, so a bodyless reset landing between current_job_id being set and _cancel_requested being cleared cannot kill the run that just started. The bytecode purge was made best-effort, but it is the only thing stopping a stale or planted .pyc shadowing a verified .py: the manifest skips __pycache__ and the origin audit reads __file__, which still names the .py. Tolerate only FileNotFoundError, the real concurrent-purge race, and let PermissionError fail the load again. The DAC fast path copies 295 MB inside the hub cache with only Timeout caught, so a full disk turned a hash-verified download into a hard failure. Fall back to the verified hub path on OSError. commitSubset cleared both splits, but setDatasetSubset already does that; the extra setDatasetSplit(null) only cost a runDatasetCheck against an assumed "train" split. * Restore the eval split reset and the cancelled-run dismiss for PR #8103 Two corrections to 4e5389c21. commitSubset: I removed setDatasetEvalSplit(null) because setDatasetSubset already nulls datasetEvalSplit. It does, but it never resets evalSteps, and setDatasetEvalSplit is not a plain setter: it zeroes evalSteps and runs streamingCompatiblePatch. Without it, changing the subset left evaluation armed with no split, which routes/training.py rejects with 422 once streaming is on, and which silently auto-detects an eval split otherwise. Restored. setDatasetSplit(null) stays out, since its only unique effect was a runDatasetCheck against an assumed "train". Unscoped reset: returning "active" for every live run was too broad. The pre-rework cancel dialog only dismisses after stopTrainingRun succeeded, so _cancel_requested is already set and clearing the UI is right; 409 there just wedged the overlay behind a "Training still active" toast. Now 409 only when no stop was requested, which is the stale-tab case the change was for. Still no force_terminate on an unscoped reset. Also covers the __pycache__ branch of the purge, which is the route a planted .pyc actually takes; the existing test only reached the top-level .pyc loop. * Keep live start cancellations and fall back on a full disk for PR #8103 Two fixes plus the regression tests the earlier lifecycle fixes shipped without. Cancelling the active start at tombstone capacity reclaimed a slot by deleting the soonest-expiring entry. Expired ones are already pruned a few lines above, so that entry was always live, and dropping it let a delayed /start spawn the job it had cancelled. Reserve capacity instead: only the owner of the active start reaches that branch and there is at most one, so the table lands at cap + 1 rather than forgetting a cancellation. Unregistered ids still hit the hard cap. ensure_dac_speech_weights migrated a pre-existing legacy file with an unguarded copy, so a hub cache that cannot absorb a second 295 MB copy failed weights that had already passed size and sha256. Same fallback the download branch below it already uses. Tests: renamed and local SSM checkpoints resolving from config rather than name, the owner of an active start staying cancellable at capacity, live cancellations surviving that cancel, and the full-disk legacy DAC fallback. * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Opt the pinned source checkouts into Git long paths for PR #8103 Cross-OS CI caught 14 failures on windows-latest, all of them the pinned checkout dying with "error: unable to write file ...: Filename too long". Git for Windows still enforces MAX_PATH unless told otherwise, and the cache nests a 40-char revision, a staging dir and .git/objects under the studio home. A venv-inferred home already measures about 253 of the 260 characters, so a slightly longer user or install path fails on a normal Windows machine, not just under the deeper pytest tmp dir. Passed per invocation with -c so no user or system Git config is touched, and it is a no-op off Windows. * Bound pending cancels, reach legacy DAC weights, and delete read-only checkouts for PR #8103 Three fixes, two of them on my own previous commit. Moving the owner cancel from evict-oldest to a one-slot overshoot also changed what the hardcoded reclaim_capacity=True on the pending non-owner branch did: it used to evict, so the table stayed at the cap, and it started overshooting instead. Start plus cancel could then be repeated to grow it without bound (1224 entries against a cap of 1024). That branch now takes the plain reservation, so the extra slot belongs to the owner of the active run alone. The DAC legacy fallback sat behind destination.parent.mkdir() and the install lock, both of which need a writable cache, so a read-only or full hub cache raised before weights we can already verify were ever looked at. Fall back at both points, and only to an artifact that passes the same size and sha256 check. Cross-OS CI then caught replacing a pinned checkout failing on windows-latest with WinError 5: Git marks .git/objects read-only and Windows will not delete a read-only file, so any repair or revision change died there. Clear the attribute and retry, only when the path is genuinely not writable, so an open handle still surfaces. * Delete the cached checkout the Windows-safe way in the migration test for PR #8103 --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: danielhanchen <moonshotaisubstack@gmail.com>
446 lines
16 KiB
Python
446 lines
16 KiB
Python
# SPDX-License-Identifier: AGPL-3.0-only
|
|
# Copyright 2026-present the Unsloth AI Inc. team. All rights reserved. See /studio/LICENSE.AGPL-3.0
|
|
|
|
"""Auto-install the SSM/Mamba kernels a hybrid model needs before it loads.
|
|
|
|
Mamba/SSM hybrids (Nemotron-H/Nano, Falcon-H1, Granite-4.0-H, GraniteMoEHybrid, ...)
|
|
lazy-``import mamba_ssm`` / ``causal_conv1d`` in their ``modeling_*.py`` during
|
|
``from_pretrained``; absent, the load dies with "mamba-ssm is required ... cannot be
|
|
imported". The training worker installs them wheel-first before a fine-tune; this is the
|
|
shared, callback-based version the inference load path calls so chat behaves the same.
|
|
Detection/versions mirror the training worker (``tests/test_ssm_runtime.py`` guards drift).
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import importlib
|
|
import os
|
|
import platform
|
|
import shutil
|
|
import subprocess
|
|
import sys
|
|
import threading
|
|
from pathlib import Path
|
|
from typing import Any, Callable, Optional
|
|
|
|
from loggers import get_logger
|
|
from utils.child_stdio import utf8_child_env
|
|
from utils.wheel_utils import (
|
|
direct_wheel_url,
|
|
install_wheel,
|
|
probe_torch_wheel_env,
|
|
url_exists,
|
|
)
|
|
|
|
logger = get_logger(__name__)
|
|
|
|
StatusCb = Optional[Callable[[str], None]]
|
|
|
|
# Pinned wheels, kept in lockstep with core/training/worker.py by tests/test_ssm_runtime.py.
|
|
CAUSAL_CONV1D_PACKAGE_VERSION = "1.6.1"
|
|
CAUSAL_CONV1D_RELEASE_TAG = "v1.6.1.post4"
|
|
CAUSAL_CONV1D_RELEASE_BASE_URL = "https://github.com/Dao-AILab/causal-conv1d/releases/download"
|
|
MAMBA_SSM_PACKAGE_VERSION = "2.3.1"
|
|
MAMBA_SSM_RELEASE_TAG = "v2.3.1"
|
|
MAMBA_SSM_RELEASE_BASE_URL = "https://github.com/state-spaces/mamba/releases/download"
|
|
|
|
# Lowercased-id substring matches, mirroring the training worker. mamba-ssm models are a
|
|
# subset of the causal-conv1d set.
|
|
SSM_MODEL_SUBSTRINGS = (
|
|
"nemotron_h",
|
|
"nemotron-h",
|
|
"nemotron-3-nano",
|
|
"falcon_h1",
|
|
"falcon-h1",
|
|
"granite-4.0-h",
|
|
"granitemoehybrid",
|
|
)
|
|
CAUSAL_CONV1D_MODEL_SUBSTRINGS = (
|
|
"qwen3.5",
|
|
"qwen3_5",
|
|
"qwen3.6",
|
|
"qwen3_6",
|
|
"qwen3-next",
|
|
"qwen3_next",
|
|
"nemotron_h",
|
|
"nemotron-h",
|
|
"nemotron-3-nano",
|
|
"falcon_h1",
|
|
"falcon-h1",
|
|
"granite-4.0-h",
|
|
"granitemoehybrid",
|
|
"lfm2",
|
|
"mamba",
|
|
"jamba",
|
|
"zamba",
|
|
"bamba",
|
|
)
|
|
_TRANSFORMERS_CAUSAL_CONV1D_MODEL_TYPE_CACHE: dict[str, bool | None] = {}
|
|
|
|
|
|
def model_is_ssm(model_name: str) -> bool:
|
|
"""Whether *model_name* is a Mamba/SSM hybrid that needs ``mamba_ssm``."""
|
|
name = (model_name or "").lower()
|
|
return any(sub in name for sub in SSM_MODEL_SUBSTRINGS)
|
|
|
|
|
|
def model_wants_causal_conv1d(model_name: str) -> bool:
|
|
"""Whether *model_name* needs ``causal_conv1d`` (the SSM set plus linear-attention
|
|
hybrids like Qwen3-Next / LFM2 whose modeling files lazy-import it)."""
|
|
name = (model_name or "").lower()
|
|
return any(sub in name for sub in CAUSAL_CONV1D_MODEL_SUBSTRINGS)
|
|
|
|
|
|
def _normalized_model_identifier(value: str) -> str:
|
|
return "".join(
|
|
character for character in value.lower() if character.isascii() and character.isalnum()
|
|
)
|
|
|
|
|
|
def _transformers_model_type_uses_causal_conv1d(model_type: str) -> bool | None:
|
|
candidate = model_type.strip().lower().replace("-", "_")
|
|
if not candidate or any(
|
|
not (character.isascii() and (character.isalnum() or character == "_"))
|
|
for character in candidate
|
|
):
|
|
return None
|
|
if candidate in _TRANSFORMERS_CAUSAL_CONV1D_MODEL_TYPE_CACHE:
|
|
return _TRANSFORMERS_CAUSAL_CONV1D_MODEL_TYPE_CACHE[candidate]
|
|
|
|
result: bool | None = None
|
|
try:
|
|
import transformers
|
|
model_dir = Path(transformers.__file__).parent / "models" / candidate
|
|
if model_dir.is_dir():
|
|
for modeling_file in model_dir.glob("modeling_*.py"):
|
|
try:
|
|
source = modeling_file.read_text(encoding = "utf-8", errors = "ignore")
|
|
except OSError:
|
|
continue
|
|
result = False
|
|
if "causal_conv1d" in source:
|
|
result = True
|
|
break
|
|
except Exception as exc:
|
|
logger.debug("causal-conv1d model-type inspection skipped: %s", exc)
|
|
|
|
_TRANSFORMERS_CAUSAL_CONV1D_MODEL_TYPE_CACHE[candidate] = result
|
|
return result
|
|
|
|
|
|
def model_config_wants_causal_conv1d(model_config: dict) -> bool | None:
|
|
model_types: set[str] = set()
|
|
architectures: set[str] = set()
|
|
pending: list[Any] = [model_config]
|
|
while pending:
|
|
value = pending.pop()
|
|
if isinstance(value, dict):
|
|
model_type = value.get("model_type")
|
|
if isinstance(model_type, str):
|
|
model_types.add(model_type)
|
|
model_architectures = value.get("architectures")
|
|
if isinstance(model_architectures, (list, tuple)):
|
|
architectures.update(
|
|
architecture
|
|
for architecture in model_architectures
|
|
if isinstance(architecture, str)
|
|
)
|
|
pending.extend(value.values())
|
|
elif isinstance(value, (list, tuple)):
|
|
pending.extend(value)
|
|
|
|
source_requirements = {
|
|
_transformers_model_type_uses_causal_conv1d(model_type) for model_type in model_types
|
|
}
|
|
if True in source_requirements:
|
|
return True
|
|
config_identifiers = model_types | architectures
|
|
normalized_needles = {
|
|
_normalized_model_identifier(value) for value in CAUSAL_CONV1D_MODEL_SUBSTRINGS
|
|
}
|
|
if any(
|
|
needle in _normalized_model_identifier(identifier)
|
|
for identifier in config_identifiers
|
|
for needle in normalized_needles
|
|
):
|
|
return True
|
|
if False in source_requirements:
|
|
return False
|
|
return None
|
|
|
|
|
|
def resolved_model_wants_causal_conv1d(
|
|
model_name: str, model_load_target: str, hf_token: str | None
|
|
) -> bool:
|
|
try:
|
|
from utils.transformers_version import _load_config_json
|
|
model_config = _load_config_json(model_load_target, hf_token)
|
|
except Exception as exc:
|
|
logger.debug("Could not inspect model config for causal-conv1d: %s", exc)
|
|
model_config = None
|
|
|
|
if isinstance(model_config, dict):
|
|
requirement = model_config_wants_causal_conv1d(model_config)
|
|
if requirement is not None:
|
|
logger.info(
|
|
"causal-conv1d requirement resolved from model architecture: %s",
|
|
requirement,
|
|
)
|
|
return requirement
|
|
return model_wants_causal_conv1d(model_name)
|
|
|
|
|
|
def ssm_probe_identifier(model_name: str, base: str | None = None) -> str:
|
|
"""The identifier whose architecture decides the SSM kernels.
|
|
|
|
The substring match needs a real model id: a LoRA adapter id or a local checkpoint's
|
|
parent folders are unrelated to its architecture (a Llama LoRA at ``user/falcon-h1-lora``
|
|
is not SSM). Prefer *base*; for a bare local checkpoint use its basename.
|
|
"""
|
|
probe = base or model_name
|
|
if probe == model_name:
|
|
try:
|
|
from utils.paths import is_local_path
|
|
if is_local_path(model_name):
|
|
probe = os.path.basename((model_name or "").rstrip("/\\")) or model_name
|
|
except Exception:
|
|
pass
|
|
return probe
|
|
|
|
|
|
def _is_importable(import_name: str) -> bool:
|
|
# Invalidate finder caches so a kernel installed earlier in this process is seen.
|
|
importlib.invalidate_caches()
|
|
try:
|
|
__import__(import_name)
|
|
return True
|
|
except Exception as exc:
|
|
# An ABI-incompatible kernel (undefined symbol after a torch/CUDA upgrade) raises
|
|
# OSError/RuntimeError, not ImportError; treat any failure as "not importable" so the
|
|
# caller reinstalls/source-builds instead of hard-failing on a merely broken kernel.
|
|
logger.debug("%s is not importable (%s: %s)", import_name, type(exc).__name__, exc)
|
|
return False
|
|
|
|
|
|
def _emit(status_cb: StatusCb, message: str) -> None:
|
|
logger.info(message)
|
|
if status_cb is None:
|
|
return
|
|
try:
|
|
status_cb(message)
|
|
except Exception: # status is best-effort; never fail a load over a UI message
|
|
logger.debug("ssm_runtime status callback raised", exc_info = True)
|
|
|
|
|
|
def _hipcc_gcc_install_dir() -> Optional[str]:
|
|
"""Highest gcc dir with both runtime and C++ headers, for ROCm clang's
|
|
``--gcc-install-dir`` (Ubuntu 24.04 ships gcc-14 runtime without its headers)."""
|
|
if not sys.platform.startswith("linux") or platform.machine().lower() != "x86_64":
|
|
return None
|
|
for ver in (14, 13, 12, 11):
|
|
if os.path.isdir(f"/usr/lib/gcc/x86_64-linux-gnu/{ver}/include") and os.path.isdir(
|
|
f"/usr/include/c++/{ver}"
|
|
):
|
|
return f"/usr/lib/gcc/x86_64-linux-gnu/{ver}"
|
|
return None
|
|
|
|
|
|
def _run_with_heartbeat(run, cmd, status_cb, display_name, **kwargs):
|
|
"""Run *cmd* via *run*, emitting a status every 60s so the parent's inactivity
|
|
timeout isn't tripped by a long (e.g. ROCm) source build."""
|
|
done = threading.Event()
|
|
|
|
def _beat():
|
|
while not done.wait(60):
|
|
_emit(status_cb, f"Still building {display_name} (this can take several minutes)...")
|
|
|
|
threading.Thread(target = _beat, daemon = True).start()
|
|
try:
|
|
return run(cmd, **kwargs)
|
|
finally:
|
|
done.set()
|
|
|
|
|
|
def _install_kernel(
|
|
*,
|
|
import_name: str,
|
|
display_name: str,
|
|
pypi_name: str,
|
|
package_version: str,
|
|
release_tag: str,
|
|
release_base_url: str,
|
|
status_cb: StatusCb,
|
|
run: Callable[..., Any],
|
|
) -> bool:
|
|
"""Install one kernel wheel-first, then a HIP-aware PyPI source build. Returns True iff
|
|
importable afterwards; idempotent (no-op when already installed)."""
|
|
if _is_importable(import_name):
|
|
logger.info("%s already installed", display_name)
|
|
return True
|
|
|
|
from utils.utils import hf_env_offline
|
|
|
|
if hf_env_offline():
|
|
logger.info("Skipping %s installation while offline", display_name)
|
|
return False
|
|
|
|
env = probe_torch_wheel_env(timeout = 30)
|
|
wheel_url = direct_wheel_url(
|
|
filename_prefix = import_name,
|
|
package_version = package_version,
|
|
release_tag = release_tag,
|
|
release_base_url = release_base_url,
|
|
env = env,
|
|
)
|
|
if wheel_url and url_exists(wheel_url):
|
|
_emit(status_cb, f"Installing {display_name} (prebuilt kernel) for this model...")
|
|
for installer, result in install_wheel(
|
|
wheel_url,
|
|
python_executable = sys.executable,
|
|
use_uv = bool(shutil.which("uv")),
|
|
run = run,
|
|
):
|
|
if getattr(result, "returncode", 1) == 0:
|
|
# A wheel can install yet fail to import (CUDA/ABI mismatch); verify before
|
|
# trusting it, else source-build to match the local ABI.
|
|
if _is_importable(import_name):
|
|
logger.info("Installed prebuilt %s wheel", display_name)
|
|
return True
|
|
logger.warning(
|
|
"%s wheel installed but not importable; building from source", display_name
|
|
)
|
|
break
|
|
logger.warning(
|
|
"%s could not install %s wheel:\n%s",
|
|
installer,
|
|
display_name,
|
|
getattr(result, "stdout", ""),
|
|
)
|
|
else:
|
|
logger.info(
|
|
"No prebuilt %s wheel for this environment (%s); building from source",
|
|
display_name,
|
|
wheel_url,
|
|
)
|
|
|
|
# Source build (slow). ROCm has no prebuilt wheel and needs hipcc + a gcc-install-dir shim.
|
|
spec = f"{pypi_name}=={package_version}"
|
|
is_hip = bool((env or {}).get("hip_version"))
|
|
if is_hip and not shutil.which("hipcc"):
|
|
_emit(status_cb, f"{display_name}: hipcc not found; install the ROCm HIP SDK to build it.")
|
|
return False
|
|
_emit(
|
|
status_cb,
|
|
f"Building {display_name} from source for this model (this can take several minutes)...",
|
|
)
|
|
# Reinstall so the source build replaces a broken wheel instead of no-opping as
|
|
# "already satisfied"; --no-cache avoids stale partial HIP build artifacts.
|
|
if shutil.which("uv"):
|
|
cmd = [
|
|
"uv",
|
|
"pip",
|
|
"install",
|
|
"--python",
|
|
sys.executable,
|
|
"--no-build-isolation",
|
|
"--no-deps",
|
|
"--reinstall",
|
|
]
|
|
if is_hip:
|
|
cmd.append("--no-cache")
|
|
cmd.append(spec)
|
|
else:
|
|
cmd = [
|
|
sys.executable,
|
|
"-m",
|
|
"pip",
|
|
"install",
|
|
"--no-build-isolation",
|
|
"--no-deps",
|
|
"--no-cache-dir",
|
|
"--force-reinstall",
|
|
spec,
|
|
]
|
|
|
|
run_kwargs: dict[str, Any] = {
|
|
"stdout": subprocess.PIPE,
|
|
"stderr": subprocess.STDOUT,
|
|
"text": True,
|
|
# pip and the compilers it drives write UTF-8 down this pipe; the Windows
|
|
# ANSI codepage would mojibake or raise over a fine install.
|
|
"encoding": "utf-8",
|
|
"errors": "replace",
|
|
# Make the Python child emit the UTF-8 we decode above.
|
|
"env": utf8_child_env(),
|
|
}
|
|
if is_hip:
|
|
run_kwargs["timeout"] = 1800 # ROCm builds can take 10-30 min
|
|
existing = os.environ.get("HIPCC_COMPILE_FLAGS_APPEND", "")
|
|
if "--gcc-install-dir" not in existing:
|
|
gcc_dir = _hipcc_gcc_install_dir()
|
|
if gcc_dir:
|
|
# Extends the UTF-8 env above rather than replacing it.
|
|
_env = dict(run_kwargs["env"])
|
|
_env["HIPCC_COMPILE_FLAGS_APPEND"] = (
|
|
f"{existing} --gcc-install-dir={gcc_dir}".strip()
|
|
)
|
|
run_kwargs["env"] = _env
|
|
try:
|
|
result = _run_with_heartbeat(run, cmd, status_cb, display_name, **run_kwargs)
|
|
except subprocess.TimeoutExpired:
|
|
logger.error("%s source build timed out", display_name)
|
|
_emit(status_cb, f"{display_name} source build timed out.")
|
|
return False
|
|
if getattr(result, "returncode", 1) != 0:
|
|
logger.warning("%s source install failed:\n%s", display_name, getattr(result, "stdout", ""))
|
|
return _is_importable(import_name)
|
|
|
|
|
|
def ensure_ssm_runtime(
|
|
model_name: str,
|
|
*,
|
|
status_cb: StatusCb = None,
|
|
run: Callable[..., Any] = subprocess.run,
|
|
) -> None:
|
|
"""Install the SSM kernels *model_name* needs before load, wheel-first; a no-op for
|
|
non-SSM models and idempotent. Only a true SSM hybrid's ``mamba_ssm`` is fatal (raises
|
|
``RuntimeError`` instead of a cryptic mid-load failure); ``causal_conv1d`` is best-effort
|
|
(Qwen3-Next/LFM2 fall back to torch).
|
|
"""
|
|
wants_causal_conv1d = model_wants_causal_conv1d(model_name)
|
|
is_ssm = model_is_ssm(model_name)
|
|
if not (wants_causal_conv1d or is_ssm):
|
|
return
|
|
|
|
# No prebuilt Windows wheel: skip causal-conv1d on win32 (mirrors training) rather than
|
|
# dropping a chat load into a multi-minute source build for an optional fast path.
|
|
if wants_causal_conv1d and sys.platform == "win32":
|
|
logger.info(
|
|
"Skipping causal-conv1d on Windows (no prebuilt wheel); using the torch fallback"
|
|
)
|
|
wants_causal_conv1d = False
|
|
|
|
# causal-conv1d first (SSM modeling files lazy-import it; mamba-ssm's fast path uses it).
|
|
if wants_causal_conv1d and not _install_kernel(
|
|
import_name = "causal_conv1d",
|
|
display_name = "causal-conv1d",
|
|
pypi_name = "causal-conv1d",
|
|
package_version = CAUSAL_CONV1D_PACKAGE_VERSION,
|
|
release_tag = CAUSAL_CONV1D_RELEASE_TAG,
|
|
release_base_url = CAUSAL_CONV1D_RELEASE_BASE_URL,
|
|
status_cb = status_cb,
|
|
run = run,
|
|
):
|
|
logger.warning("causal-conv1d unavailable; continuing on the model's torch fallback")
|
|
|
|
if is_ssm and not _install_kernel(
|
|
import_name = "mamba_ssm",
|
|
display_name = "mamba-ssm",
|
|
pypi_name = "mamba-ssm",
|
|
package_version = MAMBA_SSM_PACKAGE_VERSION,
|
|
release_tag = MAMBA_SSM_RELEASE_TAG,
|
|
release_base_url = MAMBA_SSM_RELEASE_BASE_URL,
|
|
status_cb = status_cb,
|
|
run = run,
|
|
):
|
|
raise RuntimeError("Could not install mamba-ssm, required by this Mamba model.")
|