Views
No views yet
ik_llama.cpp imatrix Quantizations of Qwen/Qwen3-235B-A22B-Thinking-2507ik_llama.cpp can also run your existing GGUFs from bartowski, unsloth, mradermacher, etc if you want to try it out before downloading my quants.
bf16 437.989 GiB (16.003 BPW)
Q8_0 232.769 GiB (8.505 BPW)
IQ5_K 161.722 GiB (5.909 BPW)1#!/usr/bin/env bash
2
3# Repeating Layers [0-93]
4
5custom="
6# Attention
7blk\..*\.attn_q.*=iq6_k
8blk\..*\.attn_k.*=q8_0
9blk\..*\.attn_v.*=q8_0
10blk\..*\.attn_output.*=iq6_k
11
12# Routed Experts
13blk\..*\.ffn_down_exps\.weight=iq6_k
14blk\..*\.ffn_(gate|up)_exps\.weight=iq5_k
15
16# Token Embedding
17token_embd\.weight=iq6_k
18output\.weight=iq6_k
19"
20
21custom=$(
22 echo "$custom" | grep -v '^#' | \
23 sed -Ez 's:\n+:,:g;s:,$::;s:^,::'
24)
25
26numactl -N 0 -m 0 \
27./build/bin/llama-quantize \
28 --custom-q "$custom" \
29 --imatrix /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/imatrix-Qwen3-235B-A22B-Thinking-2507-BF16.dat \
30 /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/Qwen3-235B-A22B-Thinking-2507-BF16-00001-of-00010.gguf \
31 /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/Qwen3-235B-A22B-Thinking-2507-IQ5_K.gguf \
32 IQ5_K \
33 192IQ4_K 134.183 GiB (4.903 BPW)1#!/usr/bin/env bash
2
3# Repeating Layers [0-93]
4
5custom="
6# Attention
7blk\..*\.attn_q.*=iq6_k
8blk\..*\.attn_k.*=q8_0
9blk\..*\.attn_v.*=q8_0
10blk\..*\.attn_output.*=iq6_k
11
12# Routed Experts
13blk\..*\.ffn_down_exps\.weight=iq5_k
14blk\..*\.ffn_(gate|up)_exps\.weight=iq4_k
15
16# Token Embedding
17token_embd\.weight=iq6_k
18output\.weight=iq6_k
19"
20
21custom=$(
22 echo "$custom" | grep -v '^#' | \
23 sed -Ez 's:\n+:,:g;s:,$::;s:^,::'
24)
25
26numactl -N 1 -m 1 \
27./build/bin/llama-quantize \
28 --custom-q "$custom" \
29 --imatrix /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/imatrix-Qwen3-235B-A22B-Thinking-2507-BF16.dat \
30 /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/Qwen3-235B-A22B-Thinking-2507-BF16-00001-of-00010.gguf \
31 /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/Qwen3-235B-A22B-Thinking-2507-IQ4_K.gguf \
32 IQ4_K \
33 192IQ4_KSS 114.093 GiB (4.169 BPW)1#!/usr/bin/env bash
2
3# Repeating Layers [0-93]
4
5custom="
6# Attention
7blk\..*\.attn_q.*=iq5_ks
8blk\..*\.attn_k.*=q8_0
9blk\..*\.attn_v.*=q8_0
10blk\..*\.attn_output.*=iq5_ks
11
12# Routed Experts
13blk\.(0|1|2)\.ffn_down_exps\.weight=iq5_ks
14blk\.(0|1|2)\.ffn_(gate|up)_exps\.weight=iq4_ks
15blk\..*\.ffn_down_exps\.weight=iq4_ks
16blk\..*\.ffn_(gate|up)_exps\.weight=iq4_kss
17
18# Token Embedding
19token_embd\.weight=iq6_k
20output\.weight=iq6_k
21"
22
23custom=$(
24 echo "$custom" | grep -v '^#' | \
25 sed -Ez 's:\n+:,:g;s:,$::;s:^,::'
26)
27
28numactl -N 0 -m 0 \
29./build/bin/llama-quantize \
30 --custom-q "$custom" \
31 --imatrix /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/imatrix-Qwen3-235B-A22B-Thinking-2507-BF16.dat \
32 /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/Qwen3-235B-A22B-Thinking-2507-BF16-00001-of-00010.gguf \
33 /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/Qwen3-235B-A22B-Thinking-2507-IQ4_KSS.gguf \
34 IQ4_KSS \
35 192IQ3_K 106.644 GiB (3.897 BPW)1#!/usr/bin/env bash
2
3# Repeating Layers [0-93]
4
5custom="
6# Attention
7blk\..*\.attn_q.*=iq6_k
8blk\..*\.attn_k.*=q8_0
9blk\..*\.attn_v.*=q8_0
10blk\..*\.attn_output.*=iq6_k
11
12# Routed Experts
13blk\..*\.ffn_down_exps\.weight=iq4_k
14blk\..*\.ffn_(gate|up)_exps\.weight=iq3_k
15
16# Token Embedding
17token_embd\.weight=iq6_k
18output\.weight=iq6_k
19"
20
21custom=$(
22 echo "$custom" | grep -v '^#' | \
23 sed -Ez 's:\n+:,:g;s:,$::;s:^,::'
24)
25
26numactl -N 1 -m 1 \
27./build/bin/llama-quantize \
28 --custom-q "$custom" \
29 --imatrix /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/imatrix-Qwen3-235B-A22B-Thinking-2507-BF16.dat \
30 /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/Qwen3-235B-A22B-Thinking-2507-BF16-00001-of-00010.gguf \
31 /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/Qwen3-235B-A22B-Thinking-2507-IQ3_K.gguf \
32 IQ3_K \
33 192IQ3_KS 101.308 GiB (3.702 BPW)1#!/usr/bin/env bash
2
3# Repeating Layers [0-93]
4
5custom="
6# Attention
7blk\..*\.attn_q.*=iq6_k
8blk\..*\.attn_k.*=q8_0
9blk\..*\.attn_v.*=q8_0
10blk\..*\.attn_output.*=iq6_k
11
12# Routed Experts
13blk\.(0|1|2|3)\.ffn_down_exps\.weight=iq5_ks
14blk\.(0|1|2|3)\.ffn_(gate|up)_exps\.weight=iq4_ks
15blk\..*\.ffn_down_exps\.weight=iq4_ks
16blk\..*\.ffn_(gate|up)_exps\.weight=iq3_ks
17
18# Token Embedding
19token_embd\.weight=iq4_k
20output\.weight=iq6_k
21"
22
23custom=$(
24 echo "$custom" | grep -v '^#' | \
25 sed -Ez 's:\n+:,:g;s:,$::;s:^,::'
26)
27
28numactl -N 0 -m 0 \
29./build/bin/llama-quantize \
30 --custom-q "$custom" \
31 --imatrix /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/imatrix-Qwen3-235B-A22B-Thinking-2507-BF16.dat \
32 /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/Qwen3-235B-A22B-Thinking-2507-BF16-00001-of-00010.gguf \
33 /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/Qwen3-235B-A22B-Thinking-2507-IQ3_KS.gguf \
34 IQ3_KS \
35 192IQ2_KL 81.866 GiB (2.991 BPW)1#!/usr/bin/env bash
2
3# Repeating Layers [0-93]
4
5custom="
6# Attention
7blk\..*\.attn_q.*=iq6_k
8blk\..*\.attn_k.*=q8_0
9blk\..*\.attn_v.*=q8_0
10blk\..*\.attn_output.*=iq6_k
11
12# Routed Experts
13blk\..*\.ffn_down_exps\.weight=iq3_ks
14blk\..*\.ffn_(gate|up)_exps\.weight=iq2_kl
15
16# Token Embedding
17token_embd\.weight=iq4_k
18output\.weight=iq6_k
19"
20
21custom=$(
22 echo "$custom" | grep -v '^#' | \
23 sed -Ez 's:\n+:,:g;s:,$::;s:^,::'
24)
25
26numactl -N 0 -m 0 \
27./build/bin/llama-quantize \
28 --custom-q "$custom" \
29 --imatrix /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/imatrix-Qwen3-235B-A22B-Thinking-2507-BF16.dat \
30 /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/Qwen3-235B-A22B-Thinking-2507-BF16-00001-of-00010.gguf \
31 /mnt/raid/models/ubergarm/Qwen3-235B-A22B-Thinking-2507-GGUF/Qwen3-235B-A22B-Thinking-2507-IQ2_KL.gguf \
32 IQ2_KL \
33 1921./build/bin/llama-server \
2 --model /models/IQ5_K/Qwen3-235B-A22B-Thinking-IQ5_K-00001-of-00004.gguf \
3 --alias ubergarm/Qwen3-235B-A22B-Thinking-2507 \
4 -fa -fmoe \
5 -ctk q8_0 -ctv q8_0 \
6 -c 32768 \
7 -ngl 99 \
8 -ot "blk\.[0-9]\.ffn.*=CUDA0" \
9 -ot "blk.*\.ffn.*=CPU \
10 --threads 16 \
11 -ub 4096 -b 4096 \
12 --host 127.0.0.1 \
13 --port 8080