The hybrid quant employs different quantization levels on a per layer basis to increase
flexibility of trading off performance vs file size. Less parameter bits are used at deep layers
and more bits at cortex layers to simulultaneously optimize quantized size and model performance.
An extended layer definition E quant Q4_E_H for the model is defined as follows (updated 8/31/2026):
The layer quants were optimized for 100% success across a small set of code generation test prompts while sized for
operation on machines with 48G CPU RAM and one consumer grade GPU (8G VRAM or higher).
Comparison:
Quant
size
PPL
Comment
Q4_K_M
48.5e9
7.6
default embed and output
Q4_E_H
48.6e9
7.7
Q6_K embed Q6_K output extended quant defintions
Usage:
This is a 80B parameter coding optimized moe model with 3B activated parameters. It can be efficiently run by offloading expert
tensors to CPU via -ot exps=CPU to open up very large context space on even low VRAM GPUs. The smaller size of the optimally
quantized parameters will give an effective boost in CPU processing speed due to reducing the memory BW needed to repeatedly copy them
from main memory to SIMD regs.
The model cannot be speculated due to use of some kind of recurrent attention scheme which prohibits it. Later versions of llama.cpp
began to support rollback for recurrent models to allow speculation but this feature has not been tested. In this
particular case the lack of speculation capability is not severe since experts will have to be run on CPU for most setups which makes speculation
impractical anyway. The model was sized at ~48G and should run on a 48G RAM machine. It should be run with all experts offloaded
to CPU. Partial offload slows the model down significantly.
Rough performance metrics on a 9900k (128G RAM) and 4070 (12G VRAM)
High context performance appears to work verified against a needle in haystack prompt. However, prompt processing is
too slow (~70tps) to be practically used on very large prompts without a much stronger CPU or full GPU offload of the model.