惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
GbyAI
GbyAI
L
LangChain Blog
B
Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
P
Proofpoint News Feed
U
Unit 42
Last Week in AI
Last Week in AI
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
小众软件
小众软件
I
InfoQ
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
人人都是产品经理
人人都是产品经理
C
Check Point Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Serving a Fleet of SLMs on One RTX 5080: Multi-Model on a...
Dharamendra · 2026-05-27 · via DEV Community

Every number below was measured on a single RTX 5080 (16 GB) and is reproducible
from the repo. Each result states the exact config it was measured under; I don't
compare numbers across configs, and I flag anything we did **not
* cleanly measure.

TL;DR

You can serve several small chat LLMs from one 16 GB RTX 5080, behind a single
OpenAI-compatible endpoint, by reusing an existing router (the Shepherd Model
Gateway) plus ~150 lines of shell — no custom router, no inference engine, and
no Python or Rust in the serving stack. Three controlled findings:

  • A 0.5B model serves ~12,800 tok/s (CUDA graphs on, concurrency 48).
  • Giving a model 1/3 of the GPU's memory instead of all of it made no difference to throughput (12,766 vs 12,838 tok/s).
  • Prefix caching doubled throughput on a prefill-heavy workload; cache-aware routing lost 20% to plain round-robin in one regime.

Why this works on a 16 GB card

Small models are tiny: a quantized ~1B model is roughly 0.5–2 GB. So several fit in
16 GB at once, and you can serve them concurrently behind one endpoint. The only
real question is how to place and route them cleanly on one card.

The key idea: a router routes, it does not place

Mature routers already exist (NVIDIA Dynamo, vLLM's router, the Shepherd Model
Gateway). They give you an OpenAI endpoint and cache/load-aware routing across
workers — but they route to workers that already exist; they don't start the
workers or divide GPU memory. So "many models on one GPU" only needs a placement
step: start N model servers, each memory-capped to co-fit, and register them. That's
a shell script:

clients → SMG (reused binary) → N vLLM workers on one GPU
            ↑ a ~15-line bash launcher places + registers the workers

Enter fullscreen mode Exit fullscreen mode

(The only Python anywhere is an offline script that renders the charts below — the
serving path is shell + reused binaries.)

I ran three chat models — Qwen2.5-0.5B-Instruct, Qwen2.5-1.5B-Instruct,
SmolLM2-360M-Instruct — co-resident behind one gateway, each reachable by model name.

Three gotchas we actually hit on the 5080

  1. flashinfer's JIT needs ninja and nvcc on PATH. Launch a vLLM worker from a bare venv path and it dies with FileNotFoundError: 'ninja' inside kernel compilation. Activate the venv and put the CUDA toolkit on PATH first.
  2. Don't start co-located workers concurrently. vLLM measures --gpu-memory-utilization against total memory at startup; launch two at once and they race → one gets "No available memory for the cache blocks." Start them sequentially (health-check each before the next).
  3. Three models + CUDA graphs don't fit 16 GB. With graphs on, the third worker OOM'd. Co-locating 3 means running with graphs off (--enforce-eager) or fewer models.

Finding 1: the memory split didn't matter (controlled)

I gave one 0.5B the whole GPU vs. just 30% of it, holding everything else constant
(concurrency 48, CUDA graphs on):

Memory split has no effect

12,766 vs 12,838 tok/s — identical. At this concurrency the KV cache wasn't the
bottleneck, so shrinking it to make room for neighbors cost nothing. Good news for
co-location: you can hand most of the card to other models without hurting a small
model's throughput.

Finding 2: prefix caching doubled throughput (when prefill dominates)

vLLM's automatic prefix caching is on by default, but a random-prompt benchmark
hides it (no shared prefix). Same model, same config (graphs off), only the
workload's shared-prefix fraction changes:

Prefix cache A/B

With a 2048-token shared prefix and 32-token output (prefill-heavy), throughput
doubled (1,153 → 2,316 tok/s) and p99 TTFT dropped 64%. With a short prefix
and long output it was a modest ~15%. So a shared system prompt / RAG context is
worth a lot; random prompts get nothing.

Finding 3: "smart" routing isn't always smart

Cache-aware routing only matters with multiple replicas of one model (pin
same-prefix requests to the same replica). Holding config constant and sweeping the
prefix working set against constrained per-replica caches:

Routing regimes

Prefix working set cache_aware round_robin result
small (fits everywhere) 62.4 60.6 req/s tie
sweet spot 55.2 53.4 +3.5% (within noise)
oversized 38.5 46.3 round_robin +20%

When the working set overflows a replica's cache, cache-aware pinning sacrifices
load balance and loses by 20%. On these small models, plain round-robin /
power-of-two was the better default.

What we did NOT measure cleanly

To be straight about the limits:

  • The multi-model aggregate throughput under contention. Our controlled 3-model run had a worker OOM (graphs on, 16 GB), so we don't have a clean contention number — it's omitted rather than guessed.
  • One GPU. Everything here is the RTX 5080; we make no claims about other hardware.
  • The prefix-cache and routing runs used CUDA graphs off, so their absolute tok/s aren't comparable to Finding 1's — only the relative effects (2×, −20%) are the result.

Reproduce it

scripts/launch_workers.sh   # probe GPU, size + start N capped workers (sequential)
scripts/run_gateway.sh      # smg launch in front
bench/sweep.sh              # QPS + goodput sweep
bench/chart.sh              # self-contained HTML report

Enter fullscreen mode Exit fullscreen mode

Closing

The takeaway isn't a throughput record — it's that reuse + a shell script gets a
working multi-model serving stack onto a consumer GPU, and that controlled
measurement beats intuition: memory split didn't matter, prefix caching was a 2× win
only with shared prefixes, and cache-aware routing lost in the wrong regime.
Measure your own workload.

Repo, scripts, and raw benchmark JSON: **https://github.com/dk67604/monogpu.