Views
No views yet
[!IMPORTANT] These files require a llama.cpp fork with openPangu support: https://github.com/mrexodia/llama.cpp-openPangu-2.0-Flash Upstream llama.cpp cannot load this architecture yet.
<think> reasoning parsing, and optional multi-token-prediction (MTP) self-speculative decoding.| File | Size | Notes |
|---|---|---|
openPangu-2.0-Flash-base-Q3_K_M.gguf | 42 GB | fits 64 GB Apple Silicon |
openPangu-2.0-Flash-base-Q4_K_M.gguf | 52 GB | recommended for speed |
openPangu-2.0-Flash-base-Q8_0.gguf | 91 GB | recommended for quality (fits DGX Spark) |
openPangu-2.0-Flash-base-BF16.gguf | 183 GB | requant source |
openPangu-2.0-Flash-mtp-Q8_0.gguf | 9.2 GB | optional MTP draft head |
openPangu-2.0-Flash-mtp-BF16.gguf | 19 GB | requant source |
base files omit the 3 MTP (NextN) layers; the mtp files contain only them, for use as a speculative draft model.-c 2048): Q4_K_M 3.46, Q3_K_M 3.70. Needle-in-a-haystack retrieval validated to 100K tokens; tool calling verified against the OpenAI-compatible server API.1git clone https://github.com/mrexodia/llama.cpp-openPangu-2.0-Flash
2cd llama.cpp-openPangu-2.0-Flash
3cmake -B build -DGGML_CUDA=ON
4cmake --build build -j --target llama-server
5
6build/bin/llama-server -m openPangu-2.0-Flash-base-Q8_0.gguf -c 65536 --jinja-c 524288 (the compressed MLA KV cache stays small: roughly 12 GB at the full 512K).| short | @10K | @24K | @100K | |
|---|---|---|---|---|
| Prompt processing | 770 t/s¹ | 666 t/s | 548 t/s | 275 t/s |
| Generation | ~25 t/s | 23.1 t/s | 22.1 t/s | 18.5 t/s |
llama-bench pp512; the depth columns are measured through llama-server chat requests (needle-in-a-haystack prompts), so they include sampling and per-request overhead. Raw decode measures 38 t/s (llama-bench tg128). Q8_0 runs at roughly two thirds of the Q4 speed.1build/bin/llama-server -m openPangu-2.0-Flash-base-Q8_0.gguf \
2 -md openPangu-2.0-Flash-mtp-Q8_0.gguf --mtp -c 65536 --jinjaQ3_K_M and raise the Metal wired-memory limit before loading:1sudo sysctl iogpu.wired_limit_mb=57344
2build/bin/llama-server -m openPangu-2.0-Flash-base-Q3_K_M.gguf -c 32768 --jinja