What GLM-5.3-Flash is

On 26 August 2026 Zhipu confirmed that the model circulating as “Ox Alpha” was GLM-5.3-Flash and published the weights on Hugging Face under MIT — the most permissive license in the index, scored 10/10.

From the model card: 320B total parameters, 18B active per token, a hybrid of sparse and linear attention with what Zhipu calls manifold-constrained hyper-connections, native image input alongside text, and a 300K-token evaluation context. It is the first natively multimodal model in the GLM-5 series. The card reports Terminal-Bench 2.1 at 84.3; Zhipu’s launch line is that it outperforms GLM-5.2 across benchmarks at a tenth of the price and approaches Claude Opus 4.8 on coding and agentic tasks. No SWE-Bench Pro number appears on the card as of 7 September, so the index scores capability at 48 on the evidence available — one point under GLM-5.2, which it has not yet been shown to beat on a standardized harness.

Its sibling shipped alongside it: the 753B GLM-5.3 flagship, also open-weight since 25 August but under a custom license rather than MIT, and a 256 GB Studio proposition at 2-bit. This post is about the one you can run on 128 GB.

Why 18B active matters on a Mac. Token generation on Apple Silicon is bound by memory bandwidth, and a mixture-of-experts model streams only its active parameters per token. GLM-5.3-Flash reads about 10 GB per token at 4-bit instead of the ~180 GB a dense 320B model would. That is the whole reason a 320B model is a Mac conversation at all.

Which Mac holds which quant

Unsloth’s dynamic GGUFs are the practical reference. The sizes below are theirs; the Mac tiers are ours.

QuantDisk sizeFitsNotes
UD-IQ1_S / IQ1_M93 / 98 GB128 GB1-bit; Unsloth’s dynamic 1-bit keeps ~71% of top-1% accuracy in their tests. A last resort.
UD-IQ2_XXS / Q2_K_XL102 / 109 GB128 GBComfortable headroom for context on a 128 GB machine.
UD-IQ3_XXS120 GB128 GBThe quant Unsloth uses in its own demos “as it fits on 128GB devices.” 8 GB left for the OS and KV cache — short contexts only.
UD-Q3_K_XL148 GB192 GBM4 Ultra territory.
UD-IQ4_XS157 GB192 GBThe largest quant a 192 GB Mac holds with working room.
UD-Q4_K_XL200 GB256 GBTrue 4-bit. M5 Ultra 256/512 GB, M3 Ultra 256/512 GB.
UD-Q5_K_XL / Q6_K_XL240 / 292 GB256 / 512 GBDiminishing returns over 4-bit for local use.
BF16650 GBNo Mac.

The line that matters: 128 GB is the floor, and 256 GB is where you stop compromising. A 96 GB Mac cannot hold any of these.

Estimated speed per chip

These are estimates from the index’s published bandwidth model with its MoE factor applied (0.42 of the active-bytes formula, fitted to the one community-measured MoE run in the index). They are not measurements, and they will be replaced by measurements as they are linked.

MacBandwidthQuantEst. tok/s
Mac Studio / MacBook Pro M5 Max, 128 GB600 GB/sUD-IQ3_XXS~27 est.
Mac Studio M4 Ultra, 192 GB1,092 GB/sUD-IQ4_XS~32 est.
Mac Studio M3 Ultra, 256/512 GB819 GB/sUD-Q4_K_XL~25 est.
Mac Studio M5 Ultra, 256/512 GB1,228 GB/sUD-Q4_K_XL~35 est.

For comparison, DeepSeek V4 Flash — 13B active, the closest sibling in the index — is community-measured at 39 tok/s on an M5 Max at 2-bit. GLM-5.3-Flash at 3-bit with 18B active landing in the high twenties is consistent with that; if an early run comes in well above, the index will happily be wrong in that direction. Rows live on the benchmarks page with their labels.

How to run it today

Two paths, neither of them a one-line ollama run yet as of 7 September.

llama.cpp with the GGUFs

The Unsloth GGUFs require a GLM-5-aware build. Their guide points at a specific branch rather than a tagged release; on a Mac, build with Metal on (the default) and CUDA off. Expect this to land upstream, at which point the stock brew install llama.cpp will do.

git clone --branch glm5next/upstream https://github.com/ggml-org/llama.cpp
cd llama.cpp && cmake -B build -DGGML_CUDA=OFF && cmake --build build --config Release -j
./build/bin/llama-cli -hf unsloth/GLM-5.3-Flash-GGUF:UD-IQ3_XXS -c 16384

MLX

Community MLX conversions at 2–8 bit are on Hugging Face. They are the more natural fit for an Ultra and avoid the branch dance, at the cost of being community-maintained; check that the conversion’s bit-width matches the Mac tier above before downloading 200 GB.

Context budget. At 3-bit on a 128 GB Mac, weights take 120 GB. Budget KV cache before you set -c; 16K is realistic, 128K is not. On a 256 GB Studio at 4-bit you have 56 GB to spend on context.

Should you buy a Mac for it?

Not on this model alone — but this model is the clearest case yet that the 256 GB Mac Studio tier has a job. If you already own a 128 GB machine, the 3-bit quant is worth an evening. If you are deciding between 128 and 256 GB, GLM-5.3-Flash at true 4-bit, Qwen3.8-Flash-Next with room to spare, and DeepSeek V4 Flash at 4-bit are the three models that only the larger tier runs properly, and all three arrived in the same fortnight. The M5 Ultra Studio ships on 22 September; the index’s per-Mac rankings are on the 256 GB page.

Frequently Asked Questions

What Mac do I need to run GLM-5.3-Flash?

At minimum a 128 GB Mac (M5 Max, M4 Max or M3 Max with 128 GB) using Unsloth's 3-bit UD-IQ3_XXS quant at 120 GB, which leaves little room for context. A 192 GB M4 Ultra holds the 157 GB IQ4_XS. True 4-bit at 200 GB needs a 256 GB or 512 GB Mac Studio (M5 Ultra or M3 Ultra). No 96 GB Mac can hold it.

How fast is GLM-5.3-Flash on a Mac?

LLMCheck estimates about 27 tok/s on an M5 Max at 3-bit, 32 on an M4 Ultra at IQ4_XS, 25 on an M3 Ultra and 35 on an M5 Ultra at 4-bit. These come from the index's published bandwidth model with its MoE factor applied and are labelled estimated; no independent Mac measurement has been linked as of 7 September 2026.

Is GLM-5.3-Flash open source?

The weights are released under the MIT license, the most permissive in the LLMCheck index, and are downloadable from Hugging Face. MIT permits commercial use, modification and redistribution with attribution.

Was Ox Alpha really GLM-5.3-Flash?

Yes. Zhipu confirmed on 26 August 2026 that the anonymous Ox Alpha model tested on evaluation arenas during August was GLM-5.3-Flash, and released the weights the same day.

Does Ollama support GLM-5.3-Flash?

Not as a stock pull as of 7 September 2026. The GGUFs need a GLM-5-aware llama.cpp branch, which Unsloth documents; MLX community conversions are the other route on Apple Silicon. Expect upstream support to follow.