Every family enters through the same pipeline — GGUF or safetensors artifact, template, lowering, memory plan,
codegen. Most families differ only in contract values. This page documents the families that differ in
contract structure: the ones that forced new kernel families into the registry. Each section links to
the provider-level math in v8 Kernel Architecture.
Already covered by dedicated deep dives
Kimi / MLA. Latent KV cache contract, prefill/decode store ops, and the
text-decoder certification evidence: v8 MLA / Kimi.
Qwen3.5 / 3.6 / 3.8 hybrid recurrent. Gated DeltaNet block math, forward
and backward kernels: Gated DeltaNet Deep Dive. Qwen3.8's addition is
identity, not structure: upstream GGUFs advertise architecture=qwen35 and the converter selects
the qwen38 circuit from artifact metadata.
Laguna-XS 2.1 (PR #404) combines three structures that previously existed only separately: a softplus
per-head attention gate, two RoPE contracts in one model, and MoE layers on top of sliding attention with
mixed Q4/Q6 expert storage.
Command R (PR #401) is the first family where attention and MLP read the same normalized tensor and
add both results back, and the first to declare a model-level logit scale.
click / tap the diagram to expand
The shared norm makes the parallel branches a contract, not a fusion decision: both branches
must consume the identical normed tensor, which the circuit declares and the memory plan shares. Provider math:
kernel architecture — norms, footer ops.
Instella — gated MLA with FarSkip residual streams
Instella-MoE 16B-A3B (PRs #292/#294/#295, certified BF16 in #389) combines Kimi-style latent attention with a
gate, and replaces the single residual highway with two coordinated streams.
click / tap the diagram to expand
MLA provider math: kernel architecture — MLA and
v8 MLA / Kimi. The FarSkip shared-combine provider
(farskip_swiglu_shared_combine_bf16) is candidate status.
Nemotron Nano 9B v2 mixes three block types. The contract that mattered most: Mamba2 state is
[heads, head_dim, state_dim], not a square DeltaNet-style matrix — the template carries that shape
explicitly instead of reusing the DeltaNet kernels.