howtospark
models / inkling-small
?

thinkingmachines/Inkling-Small
266B params~14B activebfloat16MoE 256×6GQA 32:8MTP ×81.0M ctxmultimodalapache-2.0
Sparks
~546 GB
~413 GB
~280 GB
~147 GB
~90 GB
~86 GB
~82 GB
110 usable
REAP dialno pruning · 256 experts
Spec decode
Context33K / 1.0MKV
On the Sparks — 1× · 2-bit experts + NVFP4 dense · 33K ctx · FP16 KV~195K ctx fits usable
spark
28 GB free
Expert planes64.5* GB2-bit
110 usable
82* / 110 GB
75% of usable
Expert planesDense weightsKV cacheActivations + graphsOS reserve

* segment sizes marked with an asterisk are estimates pending a measured run

Estimated per-node footprint, weights + KV sharded across the Spark (tensor parallel). Overhead ~8 GB/node; KV at FP16.

layer map
42 layersMoE FFN
in
out

one MoE layer · 256 experts, 6+2 fire per token

each expert ≈ 24M params

resident: 42 MoE layers × 256 experts × 24M 258.0B

active/token: 42 × 6 × 24M 6.3B experts

+ 8.0B always-on dense (attention, embeddings, shared stack) = 14.3B active

Optimize
Verdict

266B params, ~532 GB at bfloat16 and still ~133 GB at 4-bit — one Spark can't hold it; you need surgery or more Sparks.

Make it fit

Get the weights (and headroom for KV) inside the 128 GB pool — the hard gate.

Prune experts (then quantize)

With 256 routed experts and only 6 firing per token, REAP-style pruning cuts total params without touching active compute (params include vision/audio towers).

pruning to half the experts ≈ halves the routed-expert weights, ~73 GB at 4-bit

Split or stream it

Even 4-bit is ~133 GB against a 110 GB usable budget; shard across ≥2 Sparks or stream cold weights from NVMe.

Go below 4 bits

Codebook/outlier methods reach 2–3 bpw when 4-bit still overflows. — for MoE, the proven shape is a 2-bit sign-symmetric codebook on the routed experts with the dense stack kept at FP8 (vLLM-Moet).

~72 GB with 2-bit experts + FP8 dense (est.)

Make it fast

Once it fits: fewer bytes per token and fewer decode steps against 273 GB/s.

Use its MTP heads

Ships 8 multi-token-prediction layer(s) — self-speculative decode with no separate draft model; check vLLM/SGLang support for this arch.

Make it yours

Change what the model does — adapt, edit, or steer it — independent of size.

Fine-tune it

LoRA/QLoRA adapts behavior on one Spark without touching the base weights.