Views
No views yet
q4tp layout — 4-bit tiles with predicted per-row scale ladders, ~7% smaller
than plain tiled q4 at near-identical quality. Unlike most conversions this
file keeps the model's multi-token-prediction head (one full MoE layer;
35.51B parameters total, MTP: 1 block(s) at load).1cargo install cortiq-cli
2hf download infosave/Qwen3.6-35B-A3Bcmf qwen36-35b-a3b-q4tp.cmf --local-dir . # pip install -U huggingface_hub1# Since cortiq 0.5.48: no flags. The GPU, its VRAM budget and the
2# device/host split are detected and sized automatically.
3cortiq run qwen36-35b-a3b-q4tp.cmf
4
5# fast prompt ingest # long context, O(1) attention on GPU
6CMF_BATCH_K=32 CMF_MTP=0 ... CMF_O1_GPU=1 ... --o1 all
7
8# OpenAI-compatible server (works with Cline/Roo-style clients)
9cortiq serve qwen36-35b-a3b-q4tp.cmf| VRAM | 4 GB | 6 GB | 8 GB | 12 GB | 16 GB | 24 GB+ |
|---|---|---|---|---|---|---|
| tok/s | 26.9 | 38.3 | 43.6 | 58.8 | 86.9 | 122.4 (full graph) |
| layers on GPU | 4/40 | 9/40 | 14/40 | 24/40 | 34/40 | all |
CMF_GPU_VRAM_MB still overrides the budget
if you want to cap it by hand.| hardware | decode | prompt ingest | |
|---|---|---|---|
| Vulkan | RTX PRO 6000 Blackwell | 122.4 tok/s (0.5.49) | 99 tok/s (CMF_BATCH_K=32) |
| CPU | 48-core server | 32.6 tok/s (0.5.50) | 33 tok/s |
| CPU | Apple M4 Air 24 GB | 18.2 tok/s (CMF_THREADS=8, pre-0.5.50 — expect roughly double) | — |
--o1 all + CMF_O1_GPU=1: flat 53.8 tok/s at ctx
16 384 where exact attention has fallen to 37.8. GPU output is
token-for-token identical to the CPU at short context; on very long
prompts greedy decoding may pick a different-but-coherent continuation at
probability ties (float ordering, as with any GPU offload). o1 is an
approximation and carries no bit-parity claim.qwen36-35b-a3b-q4tp.cmf — 18 678 996 782 bytes, size-verified against
the converter output after upload.cortiq convert --model Qwen/Qwen3.6-35B-A3B --quant q4tp --output qwen36-35b-a3b-q4tp.cmf — streaming, peak disk =
the output file. Converters before 0.5.42 drop the mtp.* tensors and
produce a smaller, different file.