Inference Engineering 101 - with Philip Kiely
TL;DR
Production viability trumps benchmark scores: The real question isn't whether a model scores 72 or 74 on a benchmark, but whether it's sufficiently intelligent for your specific task, which is a binary outcome.
Quantization is essential, not optional: Models trained in BF-16 (2 bytes per parameter) become impractical at scale; NVFP4 cuts memory requirements in half while preserving model quality through dual scale factors that protect outlier dynamics.
Mixture of experts architecture benefits everyone differently: Local users benefit from only activating a fraction of parameters per request, while data centers use expert parallelism to optimize throughput across batched requests.
Prefill and decode are fundamentally different workloads: Prefill is compute-bound (time to first token), decode is memory-bound (tokens per second), which is why disaggregated inference separates them onto dedicated workers for 2x performance gains.
The inference field is remarkably young: Optimizations routinely deliver 20-50% improvements or even 2x speedups, unlike mature fields like quantitative finance where 2-5% gains are considered significant.
Framework choice depends heavily on use case: vLLM runs everywhere on everything, SGLang excels at multimodal especially image, and TensorRT-LLM delivers best performance but has steep learning curve and limited model support.
Summary
Philip Kiely, inference engineer at Base 10, breaks down the rapidly evolving world of AI inference from quantization fundamentals to advanced techniques like disaggregated prefill/decode that can deliver 2x speedups.
Was This Useful?
Share
Keep Reading
Make Alcreon Yours
Tune your feedFive quick questions, and the feed ranks what matters to you first.Or just get notified
The weekly Echo. Signal worth keeping in your inbox.
Every new piece, announced on X.
Read Next
See all
Playbook
The Retirement Email Isn't a Warning
Model retirements now arrive every few weeks; the config-eval-rehearsal loop turns each deprecation email from a fire drill into an afternoon swap.

Playbook
The Cheapest Model That Passes
OpenRouter lists 400 models behind one API. The fix for choosing isn't a better leaderboard, it's a four-step protocol that ends in a real eval.

Playbook
Cheap Models, Hard Tasks
Most agent workflows route every step to the frontier model by default. The bill scales with how chatty the agent gets, even when most steps don't need that brain.