Views
No views yet
blascotobasco/Gemma-4-96E-A4B-Heretic for the TurboQuant llama.cpp branch.tokenizer.chat_template matches the updated Gemma 4 Interleaved template. The published TQ GGUFs now work in reasoning mode on the linked branch without requiring --chat-template-file.| File | Size | Notes |
|---|---|---|
Gemma-4-96E-A4B-Heretic-TQ3_1S.gguf | 12589895200 bytes (11.73 GiB) | TQ3_1S, updated embedded interleaved template |
Gemma-4-96E-A4B-Heretic-TQ4_1S.gguf | 13985279520 bytes (13.02 GiB) | TQ4_1S, updated embedded interleaved template |
chat_template.jinja | standalone Gemma 4 Interleaved template matching the embedded GGUF template | |
requant_recipe_tq3_1s.txt | tensor override recipe for TQ3_1S | |
requant_recipe_tq4_1s.txt | tensor override recipe for TQ4_1S |
llama.cpp branch:1git clone https://github.com/iamwavecut/llama-cpp-turboquant.git
2cd llama-cpp-turboquant
3git checkout feature/turboquant-kv-cache
4cmake -S . -B build
5cmake --build build --config Release -jllama.cpp is not the supported runtime for these TurboQuant GGUFs.Gemma 4 Interleaved.chat_template.jinja in this repo matches the embedded template.--reasoning on is enabled and no explicit -sys prompt is provided.--chat-template-file is no longer required for normal reasoning usage on the supported branch.1/path/to/llama-cli \
2 -m /path/to/Gemma-4-96E-A4B-Heretic-TQ4_1S.gguf \
3 -ngl 99 \
4 -fa on \
5 -ctk q8_0 \
6 -ctv turbo4 \
7 -c 8192 \
8 -cnv \
9 --jinja \
10 --reasoning on1/path/to/llama-cli \
2 -m /path/to/Gemma-4-96E-A4B-Heretic-TQ4_1S.gguf \
3 -ngl 99 \
4 -fa on \
5 -ctk q8_0 \
6 -ctv turbo4 \
7 -c 8192 \
8 -cnv \
9 --jinja \
10 --reasoning off \
11 --reasoning-format none1/path/to/llama-cli \
2 -m /path/to/Gemma-4-96E-A4B-Heretic-TQ3_1S.gguf \
3 -ngl 99 \
4 -fa on \
5 -ctk q8_0 \
6 -ctv turbo3 \
7 -c 8192 \
8 -cnv \
9 --jinja \
10 --reasoning on1/path/to/llama-cli \
2 -m /path/to/Gemma-4-96E-A4B-Heretic-TQ3_1S.gguf \
3 -ngl 99 \
4 -fa on \
5 -ctk q8_0 \
6 -ctv turbo3 \
7 -c 8192 \
8 -cnv \
9 --jinja \
10 --reasoning off \
11 --reasoning-format noneTQ files and reasoning mode failed without an external template override, download the refreshed files from this repo.Q8_0 is the clean repacked source checkpoint used locally to produce the published TurboQuant requants, but it is not distributed from this repo.SQ variants are intentionally not published here.blascotobascollama.cpp and the linked TurboQuant branch