Views
No views yet
model-dense.gguf; routed expert tensors are stored separately in
a layer-major sidecar/ and loaded into a per-layer resident slot bank on demand.
Use the Flash-MoE-enabled Qwen3.8 branch of
anemll-flash-llama.cpp.
Stock llama.cpp builds that do not understand this package layout or its
IQ1_XXXS routed experts cannot run it.| Property | Value |
|---|---|
| Architecture | qwen35moe |
| Transformer blocks | 93 |
| Embedding width | 8192 |
| Context metadata | 262,144 tokens |
| Routed experts per layer | 512 |
| Native experts selected per token | 10 |
| Dense/shared GGUF tensors | 1,423 |
| Dense/shared GGUF file size | 36,881,771,680 bytes |
| Routed tensors | 279 |
| Routed sidecar size | 360,374,599,680 bytes |
| Complete upload size | 397,256,650,449 bytes (369.97 GiB) |
IQ1_XXXS (276 tensors).Q2_K (3 tensors).| Quant type | Tensors | Tensor-data bytes |
|---|---|---|
F32 | 838 | 2,171,133,440 |
Q4_K | 2 | 2,288,517,120 |
Q5_K | 420 | 23,391,633,408 |
Q6_K | 162 | 8,876,851,200 |
Q8_0 | 1 | 142,606,336 |
1hf download anemll/Qwen3.8-2.4T-A95B-FlashMoE-UD-Q1_0 \
2 --local-dir ~/Models/Qwen3.81~/Models/Qwen3.8/
2├── model-dense.gguf
3├── flashmoe-package.json
4└── sidecar/
5 ├── manifest.json
6 ├── layer_000.bin
7 ├── ...
8 └── layer_092.binanemll-flash-llama.cpp, then run from its source
directory:1./build/bin/llama-cli \
2 -m ~/Models/Qwen3.8/model-dense.gguf \
3 --moe-mode slot-bank \
4 --moe-sidecar ~/Models/Qwen3.8/sidecar \
5 --moe-slot-bank 96 \
6 --moe-topk 10 \
7 --moe-cache-io-split 4 \
8 --moe-prefetch-temporal \
9 -fit on \
10 -ub 1 \
11 -b 1 \
12 -ngl 999 \
13 -c 128 \
14 --no-warmup \
15 -st \
16 -p "Hello" \
17 -n 16--moe-topk 10: this is the model's native routed width.--slot4 or --slot8; those fused paths do not match native
top-10 routing.-ub 1 and -b 1 select the decode-oriented SSD path.--moe-prefetch-temporal overlaps next-layer reads with current-layer compute.-c only after budgeting KV-cache and runtime memory.anemll-flash-llama.cpp, Qwen3.8
branchlicense: other. Review and comply with the
base model and source repository license terms before use or redistribution.flashmoe-package.json records the export summary and sidecar/manifest.json
records source offsets, quant types, shapes, exact byte lengths, and repacked
offsets. The package was produced with byte-level sidecar verification enabled.