Reading up on vLLM
12 deep · digging since nov 24, 25
- Inference cost at scale with napkin math
Napkin math shows serving a 32B LLM on an NVIDIA B200 GPU costs ~$9.36 per user per month when 300 users share the GPU with typical idle duty cycles.
- datalab-to/surya-ocr-2
Surya OCR 2 is a 650M-parameter vision-language model achieving 83.3% on olmOCR-bench and 87.2% on a 91-language benchmark, offering layout analysis, table recognition, and OCR in a single model.
- CUDA Books | Hacker News
A curated GitHub list of major CUDA programming books draws Hacker News commentary on their relevance, with many commenters recommending newer video and kernel-source materials instead.
- Ask HN: What are you working on? (May 2026)
In the May 2026 Ask HN thread, dozens of developers describe their current projects, including an AI-driven tabletop simulator, a Kagi alternative, and a FreeBSD release.
- This website has been temporarily rate limited | www.warman.life
Open-weight models from China are commoditizing AI capability, breaking the monopoly moat of US closed labs, prompting protectionist moves that will harm long-term US competitiveness.
- 🎙️Inside a Chinese AI Lab: How MiniMax Builds Open Models
MiniMax researcher Olive Song reveals how they debug RL training, handle model hacking, and prioritize alignment and engineering discipline in open-weight model development.
- GitHub - kanishkg/endless-terminals
Endless Terminals is an autonomous pipeline that procedurally generates terminal-use tasks without human annotation for training terminal agents with reinforcement learning.
- Agentic AI and The Mythical Agent-Month
A critique argues that AI agents don't bypass Brooks' Law, as coordination overhead and integration complexity still limit parallel agent scaling.
- Why AGI Will Not Happen — Tim Dettmers
Tim Dettmers argues AGI will never happen because computation is physical, linear progress requires exponential resources, and GPU improvements have plateaued.
- How prompt caching works - Paged Attention and Automatic Prefix Caching plus practical tips
The article explains how prompt caching works through vLLM's paged attention and automatic prefix caching, detailing KV-cache reuse and practical tips for improving cache hits.
- How LLM Inference Works
LLM inference works by tokenizing input, computing embeddings through transformer layers, then generating tokens autoregressively with KV caching and quantization optimizations.