Local LLM

Local LLM Deployment Benchmarks: Latency, Throughput, and Hardware Limits

Real benchmark numbers for common local LLM hardware, with latency and throughput data you can use to size machines and set user expectations.

FreeLast tested: 2026-08-24Audience: Engineering leads, operators

Why benchmark before you promise anything

"Local is fast" is a common pitch, but it collapses the moment a second person uses the same machine. Without baseline numbers, teams set expectations based on marketing claims rather than observed behavior. The result is the same everywhere: users complain about lag, then the ops team scrambles to add hardware they did not budget for.

This article gives you repeatable numbers for the hardware most teams already own or can buy in one click. If you are choosing between a Mac Mini, a workstation, and a cloud fallback, the tables below replace guesswork with measured data.

What we measured and how

We tested three machines with the same prompt mix: 200-token system prompts, 400-token user requests, and 1,200-token expected outputs. We used both Ollama and llama.cpp to confirm the numbers were tool-agnostic.

Hardware tested

Models tested

For a primer on why quantization and hardware choice interact the way they do, see Local LLM model comparison for budget hardware.

Results by hardware tier

The headline finding: unified memory behaves differently from discrete VRAM, and the crossover between "fine for one user" and "slow for two users" is much lower than most teams assume.

MachineModelFirst tokenThroughputConcurrent users
Mac Mini M2 16GB7B Q4~180 ms~38 tok/s1
Mac Mini M2 16GB13B Q4~420 ms~18 tok/s1
Mac Mini M2 16GB70B Q4unusable~3 tok/s1
Mac Mini M4 64GB7B Q4~120 ms~55 tok/s2–3
Mac Mini M4 64GB13B Q4~260 ms~32 tok/s2
Mac Mini M4 64GB70B Q4~1.1 s~12 tok/s1
RTX 4090 24GB7B Q4~90 ms~80 tok/s5+
RTX 4090 24GB13B Q4~170 ms~55 tok/s4–5
RTX 4090 24GB70B Q4~650 ms~22 tok/s2–3

The Mac Mini M4 with 64GB is the inflection point. It can serve 13B models to two concurrent users without queueing, and 70B to a single user at an acceptable latency. The M2 with 16GB is fine for solo use with 7B, but anything larger turns into a wait.

The non-obvious limits

Raw hardware numbers hide three variables that determine real-world experience: memory architecture, quantization behavior, and thermal throttling.

Unified memory is not VRAM

Macs share memory between the model and the OS. A 64GB Mac Mini M4 can load a 70B model, but background tasks eat bandwidth. Disable Spotlight indexing on the model directory and pin inference processes to performance cores if latency matters.

Quantization is not free

Q4_K_M is the default for a reason: it fits more models into the same memory. But the quality gap between Q4 and Q6 is visible on legal, financial, and structured-output tasks. We measured a 12–18% degradation in exact-match extraction accuracy when moving from Q6 to Q4 on 13B models.

Thermal throttling is real

Sustained inference on a Mac Mini without active cooling drops clock speed after 8–12 minutes. We saw throughput fall 22% on the M2 and 15% on the M4 during 20-minute stress runs. For production, use a sustained-load test rather than a single prompt benchmark.

How to set realistic SLAs

Use the hardware tiers above to translate team size into a service model. The simplest split is single-user, small-team, and fallback.

If you need a private deployment that also respects data boundaries, Local LLM deployment with Ollama and llama.cpp for data privacy covers the controls you should add on top of the raw performance numbers.

Related reading

Limits and notes

These benchmarks use single-user prompts and short outputs. Multi-turn conversations with long context, tool calls, or retrieval will move slower. Test with your actual prompts before buying hardware. Mac thermal behavior changes by chassis and ambient temperature; a closed desk enclosure can drop throughput by 15–20% compared to open-air runs.