Back to Sglang

sglang-mm

rust/sglang-mm/README.md

0.5.163.6 KB
Original Source

sglang-mm

Rust-accelerated multimodal preprocessing for SGLang. Fused image decode, resize, patchify, normalize, and content hash — all parallel and GIL-released.

Compiled as sglang.srt.multimodal._core via setuptools-rust when installing sglang.

Architecture

src/
├── lib.rs                    # PyO3 module root (_core)
├── registry.rs               # ImageProcessorSpec trait + ProcessorRegistry
├── common/
│   ├── mod.rs                # thread pool, image decode, SHA256 hash, base64
│   ├── resize.rs             # PIL-exact Lanczos resize
│   └── transforms.rs         # reusable primitives: normalize, pad, extract_patches
└── <model>/
    └── mod.rs                # model-specific processor

Python API

python
from sglang.srt.multimodal._core import common, inkling

# Common (model-agnostic)
common.resize_rgb(arr, out_w, out_h)
common.scaled_dims(w, h, rescale_frac, rescale_cap)
common.image_decode_rgb(bytes)          # -> (h, w, ndarray)
common.data_hash(bytes)                 # -> u64 SHA256
common.base64_decode(str)               # -> bytes

# Model-specific
inkling.preprocess_images(list[bytes], ps, frac, cap)  # -> [(h, w, bits, hash), ...]
inkling.decode_patchify(bytes, ps, frac, cap)
inkling.decode_patchify_batch(list[bytes], ps, frac, cap)
inkling.patchify_rgb(arr, patch_size)

Adding a new model

  1. Create src/<model_name>/mod.rs:
rust
use crate::common;
use crate::registry::ImageProcessorSpec;
use rayon::prelude::*;

pub struct MyModelProcessor;

impl ImageProcessorSpec for MyModelProcessor {
    fn name(&self) -> &'static str {
        "my_model"
    }

    fn preprocess_batch(
        &self,
        datas: &[Vec<u8>],
        patch_size: usize,
        rescale_frac: Option<f64>,
        rescale_cap: Option<i64>,
    ) -> Result<Vec<(usize, usize, Vec<u16>, u64)>, String> {
        common::pool().install(|| {
            datas.par_iter().map(|data| {
                let hash = common::sha256_u64(data);
                let (rgb, h, w) = common::decode_rescale(data, rescale_frac, rescale_cap)?;
                // Use common::transforms::* or model-specific logic
                let patches = my_patchify(&rgb, h, w, patch_size);
                Ok((h, w, patches, hash))
            }).collect()
        })
    }
}
  1. Register in src/registry.rs default_registry().

  2. Add PyO3 bindings in src/<model_name>/mod.rs with a register() function.

  3. Wire up in src/lib.rs: mod my_model; and my_model::register(m)?;.

  4. Add Python processor class that calls from sglang.srt.multimodal._core import my_model.

Available transform primitives (common::transforms)

FunctionDescription
normalize_rgb_f32Single-pass (pixel/255 - mean) / std
pad_to_gridPad HWC image to grid-aligned dimensions
extract_patches_hwcReshape padded image into [N, ph, pw, C] patches
patch_gridCompute (nph, npw) for given image and patch size

Design notes

  • Thread pool capped at min(8, cores). Override: SGL_MM_RS_THREADS.
  • PNG decode is bit-exact vs PIL; JPEG may differ by ±1 LSB.
  • Lanczos resize is a bit-exact clone of PIL's fixed-point implementation.

Build

Automatically built when installing sglang:

bash
pip install -e "python"

Or standalone for development:

bash
cd rust/sglang-mm
pip install maturin
maturin develop --release

Test

bash
python bench/generate_golden.py   # regenerate fixtures
pytest bench/test_golden.py       # regression tests
python bench/bench_parity.py      # parity + benchmark