Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ native tooling can be added later.
GLM 5.2 support is limited to the GGUF files tested by this branch:

```sh
./download_model.sh glm-unsloth-q4 # Unsloth UD-Q4_K_XL, 11 shards
./download_model.sh glm-antirez-iq2xxs # antirez routed IQ2_XXS single-file GGUF
./download_model.sh glm-antirez-q2 # antirez routed Q2_K single-file GGUF
./download_model.sh glm-antirez-q4 # antirez routed Q4_K single-file GGUF
./download_model.sh glm-unsloth-q4 # Unsloth UD-Q4_K_XL, 11 shards (~467 GB)
./download_model.sh glm-antirez-iq2xxs # antirez routed IQ2_XXS single-file GGUF (~211 GB)
./download_model.sh glm-antirez-q2 # antirez routed Q2_K single-file GGUF (~262 GB)
./download_model.sh glm-antirez-q4 # antirez routed Q4_K single-file GGUF (~434 GB)
```

The supported GLM layout keeps dense/model-control tensors in the existing
Expand Down
3 changes: 3 additions & 0 deletions download_model.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ Targets:
glm-antirez-iq2xxs
GLM 5.2 antirez routed IQ2_XXS GGUF from antirez/GLM-5.2-GGUF.
Includes Q2_K block 78 and is intended for reduced-memory testing.
About 211 GB on disk. Does not fully fit in 128 GB RAM — use
--ssd-streaming (and --ssd-streaming-cache-experts) on single-node
96/128 GB machines; two-node tensor parallelism also works.

glm-antirez-q2
GLM 5.2 antirez routed Q2_K GGUF from antirez/GLM-5.2-GGUF.
Expand Down