Views
No views yet

full_attention_interval = 4 assumption in stock llama.cpp's Qwen3.5 loader. These GGUFs are re-converted with per-layer head_count_kv baked in, and you need a llama.cpp that reads that per-layer metadata instead of falling back to the interval formula.rys-qwen35, one commit on top of ggml-org/llama.cpp@d00685831, fully backward-compatible).check_tensor_dims error on blk.33 — this is expected until/unless the patch is upstreamed.| File | Quant | Size | Notes |
|---|---|---|---|
ornstein-3.6-27b-rys-q8_0.gguf | Q8_0 | ~27 GB | Near-lossless, largest |
ornstein-3.6-27b-rys-q6_k.gguf | Q6_K | ~21 GB | Very high quality |
ornstein-3.6-27b-rys-q5_k_m.gguf | Q5_K_M | ~18 GB | Strong quality/size balance |
ornstein-3.6-27b-rys-q4_k_m.gguf | Q4_K_M | ~16 GB | Recommended default |
ornstein-3.6-27b-rys-q3_k_m.gguf | Q3_K_M | ~12 GB | Low-memory option |
Qwen 3.6 27B → Ornstein3.6 (DDM fine-tune) → RYS (layer 33 dup, +49%)head_count_kv array encoding the RYS-shifted attention pattern1git clone https://github.com/DJLougen/llama.cpp.git
2cd llama.cpp
3git checkout rys-qwen35
4cmake -B build -DGGML_CUDA=ON -DCMAKE_BUILD_TYPE=Release
5cmake --build build -j-DGGML_CUDA=ON for a CPU-only build. The patch touches the GGUF loader and three model forward files; backend selection is independent.1hf download GestaltLabs/Ornstein-3.6-27B-RYS-GGUF \
2 ornstein-3.6-27b-rys-q4_k_m.gguf \
3 --local-dir .
4
5./build/bin/llama-server \
6 -m ornstein-3.6-27b-rys-q4_k_m.gguf \
7 --host 0.0.0.0 --port 8080 \
8 --n-gpu-layers 99 --ctx-size 131072 \
9 --flash-attn on --jinja \
10 -ctk q4_0 -ctv q4_0