Manual · Playground

Playground machines: what runs on your desk

Apple Silicon and NVIDIA RTX cards, measured side by side. The personal machines where inference ideas get tested before they touch a cluster.

Not everyone has a 4000-GPU cluster. The machines on this page are the ones you can actually own: Apple Silicon with unified memory, and NVIDIA RTX cards with real tensor cores. They're where you test quantization, run a small vLLM, and prototype kernels. All numbers below are measured by local.ai, not spec-sheet claims.

Apple Silicon: unified memory is the superpower

Apple's M-series chips have one structural advantage for local inference: the GPU and CPU share one pool of memory, so a model's weights live in the same memory the GPU reads. No PCIe transfer, no copy. The downside is bandwidth: unified memory tops out around 500GB/s, far below an H100's 3.35TB/s. So Apple machines are memory-bound for decode, exactly like a data center GPU, just at a smaller scale.

MacBook Pro M5 Max (128GB, 40-core GPU, $6,699)

The 128GB is the point: a 70B at 4-bit fits with room for context. This is the "I want to run real models on a laptop" machine.

MacBook Pro M5 Pro (64GB, 20-core GPU, $3,699)

The 64GB is the sweet spot for a 35B A3B MoE at 4-bit (~20GB) with long context. Interactive, quiet, and it fits in a backpack.

MacBook Pro M4 Max (36GB, 32-core GPU, $3,229)

The 36GB is a real constraint: a 35B A3B at 4-bit fits, a 70B doesn't. This is the "small models, fast iteration" machine.

NVIDIA RTX: real tensor cores, no unified memory

RTX cards have the opposite tradeoff: real NVIDIA tensor cores and CUDA, but discrete VRAM (24-96GB) that you can't grow. The upside is that everything you learn transfers directly to a data center GPU. The downside is VRAM is the wall.

RTX 5090 (32GB GDDR7, $4,799)

The 5090 is the fastest consumer card for inference, period. 509 tok/s on an 8B is absurd for a $4,799 card. The 32GB limits you to a 35B A3B at 4-bit, but for that class it's unbeatable.

RTX 4090 (24GB GDDR6X, $3,449)

The 4090 is the value king: 80% of a 5090's speed at 70% of the price, and a huge used market. 24GB is tight but fine for 8-20B models.

The takeaway

For a personal playground in 2026, the choice is really between two philosophies:

All numbers from local.ai's independent benchmark runs. The site is live, so check it for the latest data.

Sources

Back to the manual