This repository contains the Inferno ExpertPack for
GLM-5.2-UD-Q2_K_RoutedQ2K.gguf.
The ExpertPack is a lossless physical reordering of the routed Q2 expert
payloads published by Antirez. It keeps the quantized expert bytes unchanged
and places each expert's gate, up, and down matrices next to each other. This
layout is designed for demand-driven SSD streaming by Inferno on Apple Silicon.
Important
This artifact is not a standalone model and does not replace the source GGUF.
Inferno also requires:
The file starts with a 4 KiB header followed by fixed-size expert records in
layer-major, expert-major order:
header -> [layer][expert][gate][up][down]
This lets Inferno issue large contiguous SSD reads for selected experts instead
of relying on scattered page faults into the component-major GGUF layout.
Intended Use
The ExpertPack is intended only for running the target GLM-5.2 Q2 artifact with
Inferno on Apple Silicon. It contains routed-expert weights only. Embeddings,
attention weights, dense layers, normalization weights, the output head,
configuration, and tokenizer remain in their original files.
Setup
Place the source files and ExpertPack in one directory:
Inferno discovers the ExpertPack in the model directory and validates its
version, source layout fingerprint, dimensions, component strides, and exact
file size before use. A pack generated from a different GGUF is rejected.
Download
After this repository is published, the artifact can be downloaded with:
The Q2 GGUF used as the direct source for this artifact was produced and
published by Antirez in
antirez/glm-5.2-gguf.
Inferno changes only the physical ordering of routed-expert payloads required
for its SSD streaming path. It does not modify their quantized values.
License
This derived artifact is distributed under the MIT License, following the
license of the source GLM-5.2 model. See the source model repositories and the
Inferno license for
details.