Views
No views yet
ik_llama.cpp imatrix Quantizations of Kimi-Dev-72Bik_llama.cpp can also run your existing GGUFs from bartowski, unsloth, mradermacher, etc if you want to try it out before downloading my quants.1# Clone
2git clone git@github.com:ikawrakow/ik_llama.cpp.git
3cd ik_llama.cpp
4
5# Build (might try adding -DGGML_CUDA_IQK_FORCE_BF16=1 for 3090s and older)
6cmake -B build -DGGML_CUDA=ON -DGGML_CUDA_F16=ON -DGGML_SCHED_MAX_COPIES=1
7cmake --build build --config Release -j $(nproc)
8
9# Run (set threads to number of CPU physical cores, mmap is fine for faster startup, adjust ctx/ngl as needed)
10./build/bin/llama-server \
11 --model /mnt/models/ubergarm/Kimi-Dev-72B-GGUF/Kimi-Dev-72B-smol-IQ3_K.gguf \
12 --ctx-size 8192 \
13 -ctk q8_0 -ctv q8_0 \
14 -fa \
15 --no-mmap \
16 -ngl 48 \
17 --threads 16 \
18 --parallel 1 \
19 --host 127.0.0.1 \
20 --port 80801./build/bin/llama-sweep-bench \
2 --model /mnt/models/ubergarm/Kimi-Dev-72B-GGUF/Kimi-Dev-72B-smol-IQ3_K.gguf \
3 --ctx-size 6144 \
4 -ctk q8_0 -ctv q8_0 \
5 -fa \
6 --no-mmap \
7 -ub 2048 -b 2048 \
8 -ngl 48 \
9 --warmup-batch \
10 --threads 16
11| PP | TG | N_KV | T_PP s | S_PP t/s | T_TG s | S_TG t/s |
|---|---|---|---|---|---|---|
| 2048 | 512 | 0 | 3.925 | 521.77 | 103.624 | 4.94 |
| 2048 | 512 | 2048 | 4.058 | 504.63 | 105.265 | 4.86 |

smol?iqK_kt QTIP Trellis style quants?ffn_down tensor is not divisible by 256 so had to use iq4_nl unless something changes.