Files
LM-Gambit/.core/engine_loader.py
T
Netherwarlord d63319bc9a
tests / python (3.10) (push) Successful in 13s
tests-macos / macos (push) Successful in 18s
tests / python (3.11) (push) Successful in 13s
tests / web (push) Successful in 38s
feat: enhance GPU support detection and user feedback in the engine interface
2026-07-29 15:35:03 -04:00

171 lines
5.9 KiB
Python

from __future__ import annotations
import importlib.abc
import importlib.util
import platform
import shutil
from dataclasses import dataclass
from pathlib import Path
from typing import Optional, Type
from config import CORE_DIR
ENGINE_ROOT = CORE_DIR / ".engine"
DEFAULT_ENGINE_VERSION = "v1"
class EngineLoadError(RuntimeError):
"""Raised when no suitable engine runtime can be loaded."""
class BaseRuntime:
"""Base class for local engine runtimes."""
name: str = "base"
def discover_gguf_models(self, search_paths: list[Path]) -> list[Path]:
gguf_paths: list[Path] = []
seen: set[Path] = set()
for root in search_paths:
if not root.exists():
continue
for path in root.rglob("*.gguf"):
if path.is_file():
resolved = path.resolve()
if resolved not in seen:
seen.add(resolved)
gguf_paths.append(resolved)
return gguf_paths
def setup(self) -> None:
"""Perform any runtime initialization before loading models."""
def load_model(self, model_path: Path) -> None:
"""Load model into memory. Implementations may cache the loaded model."""
def generate(self, prompt: str, *, temperature: float) -> dict:
"""Run inference against the currently loaded model and return a structured response."""
raise NotImplementedError
def unload(self) -> None:
"""Optional hook to release resources."""
@dataclass(frozen=True)
class EngineDescriptor:
architecture: str
version: str = DEFAULT_ENGINE_VERSION
@property
def module_path(self) -> Path:
return ENGINE_ROOT / f".{self.architecture}" / f"{self.version}.py"
@property
def module_name(self) -> str:
return f"engine_{self.architecture}_{self.version}"
#: Architectures whose runtimes ask llama.cpp to offload layers to a GPU.
GPU_ARCHITECTURES = frozenset({"cuda", "rocm", "apple_silicon"})
def detect_architecture() -> EngineDescriptor:
"""Which engine runtime this *hardware* calls for.
This looks at drivers and CPU family only. It deliberately says nothing
about whether the installed llama-cpp-python can actually use that
hardware — see gpu_offload_supported() for that half.
"""
system = platform.system().lower()
machine = platform.machine().lower()
if system == "darwin" and machine.startswith("arm"):
return EngineDescriptor("apple_silicon")
if shutil.which("nvidia-smi"):
return EngineDescriptor("cuda")
if shutil.which("rocm-smi") or shutil.which("rocminfo"):
return EngineDescriptor("rocm")
return EngineDescriptor("cpu")
def gpu_offload_supported() -> Optional[bool]:
"""Whether the installed llama-cpp-python was *built* with GPU offload.
Detection and capability are two different questions, and they routinely
disagree. llama-cpp-python compiles its backend in at install time and the
default wheel is CPU-only, so a machine with an RTX card is detected as
"cuda", loads the CUDA runtime, sets n_gpu_layers=-1 — and then generates
every token on the CPU, because the binary has no CUDA in it. Nothing
errors. The card sits at 0% while the interface reports "cuda".
llama_supports_gpu_offload() answers the question the detection cannot:
it reports what the binary can do, not what the machine has.
Returns None when the answer is unknowable — llama_cpp missing, or too old
to expose the symbol — so callers can distinguish "no" from "cannot tell".
"""
try:
import llama_cpp
except Exception:
return None
probe = getattr(llama_cpp, "llama_supports_gpu_offload", None)
if probe is None:
return None
try:
return bool(probe())
except Exception:
return None
def engine_warning(
descriptor: Optional[EngineDescriptor] = None,
*,
offload: Optional[bool] = None,
) -> Optional[str]:
"""A human-readable warning when hardware and build disagree, else None."""
descriptor = descriptor or detect_architecture()
if descriptor.architecture not in GPU_ARCHITECTURES:
return None
offload = gpu_offload_supported() if offload is None else offload
if offload is False:
return (
f"{descriptor.architecture} hardware was detected, but the installed "
"llama-cpp-python is a CPU-only build, so the GPU will sit idle and "
"generation will run on the CPU. See GPU-ACCELERATION.md to install "
"a matching wheel."
)
return None
def load_engine_class(descriptor: Optional[EngineDescriptor] = None) -> Type["BaseRuntime"]:
descriptor = descriptor or detect_architecture()
module_path = descriptor.module_path
if not module_path.exists():
raise EngineLoadError(f"Engine runtime not found for architecture '{descriptor.architecture}' at {module_path}")
spec = importlib.util.spec_from_file_location(descriptor.module_name, module_path)
if spec is None or spec.loader is None:
raise EngineLoadError(f"Unable to load engine module from {module_path}")
module = importlib.util.module_from_spec(spec)
loader = spec.loader
assert isinstance(loader, importlib.abc.Loader)
try:
loader.exec_module(module) # type: ignore[attr-defined]
except Exception as exc: # pragma: no cover - import-time validation
raise EngineLoadError(f"Failed to initialize engine runtime for '{descriptor.architecture}': {exc}") from exc
if not hasattr(module, "EngineRuntime"):
raise EngineLoadError(f"Engine module {module_path} does not define 'EngineRuntime'")
runtime_cls = getattr(module, "EngineRuntime")
if not issubclass(runtime_cls, BaseRuntime):
raise EngineLoadError(f"Engine runtime from {module_path} must inherit from BaseRuntime")
return runtime_cls