Views
No views yet
ssm and attention layers in high precision to preserve long-context performance.
The resulting model size is approximately 23.8 GiB, optimized for systems with 32 GiB RAM + 8 GiB VRAM.Qwen3.5 compress ssm layers to low precision.
For example, in Qwen3.5-35B-A3B-UD-Q5_K_XS:blk.0.attn_qkv.weight [2,048, 8,192] Q5_K
...
blk.0.ffn_gate_inp_shexp.weight [2,048] F32
blk.0.ffn_gate_shexp.weight [2,048, 512] Q8_0
blk.0.ffn_up_exps.weight [2,048, 512, 256] Q5_K
...
blk.0.ssm_alpha.weight [2,048, 32] Q5_K
blk.0.ssm_beta.weight [2,048, 32] Q5_K
...
blk.0.ssm_out.weight [4,096, 2,048] Q5_Kssm layers perform linear accumulation during generation, causing quantization errors to compound over timessm layers are small (2048×32 and 4096×2048), so quantization provides minimal performance gainssm_beta quantization may introduce noticeable degradationssm layers in BF16 precision.