Reading got about 4x faster. Writing got about 1.5x.
A chat model does two different jobs. First it reads your prompt, all of it at once, as huge matrix multiplications. Then it writes the answer one token at a time, and for every token a dense model reads essentially every one of its weights out of memory again, plus the cached keys and values for the conversation so far.
Reading is limited by math. The M5 Ultra puts Neural Accelerators in every GPU core, which Apple says "deliver dramatically faster matrix multiplication" (Apple Newsroom). On the dense models, reading came out 3.9x to 4.1x faster.
Writing is limited by memory bandwidth. Apple says that went from 819 GB/s to 1.2 TB/s, which is 1.47x. Writing came out 1.5x faster on four of the five models, and 1.8x on Qwen3 14B. That is an explanation of the numbers, not a measurement of the chip: the full reasoning.



