Estimate time-to-first-token, decode speed, and total latency for an LLM on a given GPU - before you rent it
A first-order roofline estimate, not a benchmark — it ignores KV-cache bandwidth, attention overhead, kernel launch latency, speculative decoding, and framework differences, all of which move real numbers. GPU specs are representative published figures (verified 2026-08-08) and fully editable. For memory fit, see the GPU VRAM Calculator; for API-side limits, the Rate-Limit Planner.
As-is, no warranty. These apps are free under their listed license and run entirely in your browser. Use at your own risk — don't blame me if your PC catches fire, your dog runs away, or the math turns out wrong. Verify anything that actually matters. None of this is professional financial, medical, legal, or engineering advice.
Two questions decide whether an LLM feels fast: how long until the first token appears, and how quickly tokens stream after that. They have different bottlenecks, and this tool estimates both.
Pick a model and a GPU (or enter your own bandwidth / FLOPS / memory), set your prompt and output lengths and batch size, and get:
It’s a first-order roofline estimate, which is the right mental model for LLM serving:
2 × active_params × prompt_tokens FLOPs, divided by the GPU’s achievable throughput (peak FLOPS × MFU). This sets TTFT.memory_bandwidth ÷ active_weight_bytes - not compute. This is why a bigger, faster GPU with the same bandwidth barely moves decode speed, and why quantization (fewer bytes per weight) speeds decoding up.Crucially, it separates total params (which set the memory footprint) from active params (which drive compute and decode traffic), so a Mixture-of-Experts model like Mixtral or GPT-OSS is modelled correctly - huge in memory, cheap per token.
GPU specifications are representative published figures and every field is editable, so you can plug in your exact accelerator.
For the memory-fit side, use the GPU VRAM Calculator; for API rate limits, the Rate-Limit Planner; for spend, the Reasoning Cost Calculator.
For informational purposes only. Not financial, medical, or legal advice. You are solely responsible for how you use these tools.