Skip to main content

sageLLM backend provider abstraction and mock implementation

Project description

sagellm-backend

CI PyPI version Python Version License Code style: ruff

硬件抽象层 - 为 sageLLM 提供统一的硬件接口(CUDA/Ascend/Kunlun)

架构定位

┌─────────────────────────────────────────────────────────────┐
│  sagellm-core (引擎协调层)                                   │
│  • BaseEngine, EngineFactory                               │
│  • MockEngine, CPUEngine, HFCudaEngine                     │
├─────────────────────────────────────────────────────────────┤
│  sagellm-backend (硬件抽象层) ← 本仓库                       │
│  ┌─────────────────────────────────────────────────────┐    │
│  │  BackendProvider Interface                         │    │
│  │  • Stream/Event 异步流                              │    │
│  │  • KVBlock 内存管理                                 │    │
│  │  • Collective 操作(all_reduce/all_gather)        │    │
│  └─────────────────────────────────────────────────────┘    │
│  ┌──────────┐  ┌──────────┐  ┌──────────┐  ┌──────────┐    │
│  │  CUDA    │  │  Ascend  │  │  Kunlun  │  │  Mock    │    │
│  │ Provider │  │ Provider │  │ Provider │  │ Provider │    │
│  └──────────┘  └──────────┘  └──────────┘  └──────────┘    │
├─────────────────────────────────────────────────────────────┤
│  Hardware SDK Layer                                          │
│  CUDA/cuDNN/NCCL │ CANN/HCCL │ XPU SDK │ DCU SDK           │
└─────────────────────────────────────────────────────────────┘

职责分离(v0.2.0 重构)

  • 本仓库负责:硬件抽象、设备管理、内存原语
  • 不再包含:BaseEngine, EngineFactory(已移至 sagellm-core)
  • 🔗 被使用于:sagellm-core 中的引擎实现

Features

  • 统一硬件抽象:单一 API 支持多硬件后端
  • Mock Backend:无硬件测试支持
  • CUDA Support:原生 CUDA 后端实现
  • CPU Support:CPU-only 后端实现
  • 能力发现:硬件能力查询与验证

Installation

pip install isagellm-backend

Quick Start

git clone git@github.com:intellistream/sagellm-backend.git
cd sagellm-backend
./quickstart.sh

# Run tests
pytest tests/ -v

Usage Examples

Basic Backend Usage

from sagellm_backend import MockBackendProvider, DType

# Create backend
backend = MockBackendProvider(
    supported_dtypes=[DType.FP16, DType.BF16],
    has_collective=True,
)

# Query capabilities
cap = backend.capability()
print(cap.supported_dtypes)

# Allocate KV block
block = backend.kv_block_alloc(128, DType.FP16)

Using with sagellm-core Engines

注意:引擎实现(如 HFCudaEngine)已移至 sagellm-core。Backend 现在专注于硬件抽象。

# 引擎现在位于 sagellm-core
from sagellm_core import HFCudaEngine, EngineFactory
from sagellm_backend import CPUBackendProvider

# 创建 backend
backend = CPUBackendProvider()

# 使用 EngineFactory(来自 core)
engine = EngineFactory.create(
    backend_type="cpu",
    config={
        "engine_id": "cpu-001",
        "model_path": "TinyLlama/TinyLlama-1.1B-Chat-v1.0",
    },
    provider=backend,
)

Extending with New Backends

# Create provider in providers/ directory
class AscendBackendProvider:
    def capability(self) -> CapabilityDescriptor:
        return CapabilityDescriptor(
            supported_dtypes=[DType.FP16, DType.BF16, DType.INT8],
            # ...
        )
    
    # Implement other interface methods...

# Register via entry point in pyproject.toml
[project.entry-points."sagellm.backends"]
ascend_cann = "sagellm_backend.providers.ascend:create_ascend_backend"

Documentation

License

Proprietary

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

isagellm_backend-0.2.1.0-cp311-none-any.whl (77.1 kB view details)

Uploaded CPython 3.11

File details

Details for the file isagellm_backend-0.2.1.0-cp311-none-any.whl.

File metadata

File hashes

Hashes for isagellm_backend-0.2.1.0-cp311-none-any.whl
Algorithm Hash digest
SHA256 edaafffe27d82696f2a3e80951ac52bd33e8e6231611f2556f0dbf192617a8f6
MD5 0c78127b1b70d08cae9fe75c114f488b
BLAKE2b-256 25aa34c595ad72f49090d75ac389185ba81a22900b876baa3da285f847ee05ef

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page