Views
No views yet
ik_llama.cpp can also run your existing GGUFs from bartowski, unsloth, mradermacher, etc if you want to try it out before downloading my quants.
Q8_0 123.723 GiB (8.500 BPW)
1#!/usr/bin/env bash
2
3custom="
4## Attention [0-87]
5## Keep qkv the same to allow --merge-qkv
6blk\..*\.attn_q.*\.weight=iq6_k
7blk\..*\.attn_k.*\.weight=iq6_k
8blk\..*\.attn_v.*\.weight=iq6_k
9blk\..*\.attn_output.*\.weight=iq6_k
10
11## Dense Layers [0-87]
12blk\..*\.ffn_down\.weight=iq4_ks
13blk\..*\.ffn_(gate|up)\.weight=iq4_kss
14
15## Non-Repeating layers
16token_embd\.weight=iq4_k
17output\.weight=iq6_k
18"""
19
20custom=$(
21 echo "$custom" | grep -v '^#' | \
22 sed -Ez 's:\n+:,:g;s:,$::;s:^,::'
23)
24
25numactl -N ${SOCKET} -m ${SOCKET} \
26./build/bin/llama-quantize \
27 --custom-q "$custom" \
28 --imatrix /mnt/data/models/ubergarm/Devstral-2-123B-Instruct-2512-GGUF/imatrix-Devstral-2-123B-Instruct-2512-Q8_0.dat \
29 /mnt/data/models/ubergarm/Devstral-2-123B-Instruct-2512-GGUF/Devstral-2-123B-Instruct-2512-BF16-00001-of-00006.gguf \
30 /mnt/data/models/ubergarm/Devstral-2-123B-Instruct-2512-GGUF/Devstral-2-123B-Instruct-2512-IQ4_KSS.gguf \
31 IQ4_KSS \
32 128-sm graph for the new ik_llama.cpp tensor parallel implementation.1# Example running full offload on 2x GPUs on ik_llama.cpp
2./build/bin/llama-server \
3 --model "$model"\
4 --alias ubergarm/Devstral-2-123B-Instruct-2512-GGUF \
5 -ctk q8_0 -ctv q8_0 \
6 --ctx-size 32768 \
7 --merge-qkv \
8 -ngl 99 \
9 --threads 1 \
10 --host 127.0.0.1 \
11 --port 8080 \
12 --parallel 1 \
13 --jinja
14
15# Example running Hybrid CPU+GPU(s) on ik_llama.cpp
16# adjust the -ngl to fit as many of the 88 layers as possible without OOMing for your desired context
17# adjust the threads to match your number of physical cores
18./build/bin/llama-server \
19 --model "$model"\
20 --alias ubergarm/Devstral-2-123B-Instruct-2512-GGUF \
21 -ctk q8_0 -ctv q8_0 \
22 --ctx-size 32768 \
23 --merge-qkv \
24 -ngl 20 \
25 --threads 16 \
26 --host 127.0.0.1 \
27 --port 8080 \
28 --parallel 1 \
29 --no-mmap \
30 --jinja