Views
No views yet
ik_llama.cpp imatrix Quantizations of Qwen/Qwen3-Coder-480B-A35B-Instructik_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 475.297 GiB (8.503 BPW)

IQ5_K 329.804 GiB (5.900 BPW)1#!/usr/bin/env bash
2
3# Repeating Layers [0-61]
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# Non-Repeating Layers
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-Coder-480B-A35B-Instruct-GGUF/imatrix-Qwen3-Coder-480B-A35B-Instruct-Q8_0.dat \
30 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-BF16-00001-of-00021.gguf \
31 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-IQ5_K.gguf \
32 IQ5_K \
33 192IQ4_K 273.041 GiB (4.885 BPW)1#!/usr/bin/env bash
2
3# Repeating Layers [0-61]
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# Non-Repeating Layers
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-Coder-480B-A35B-Instruct-GGUF/imatrix-Qwen3-Coder-480B-A35B-Instruct-Q8_0.dat \
30 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-BF16-00001-of-00021.gguf \
31 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-IQ4_K.gguf \
32 IQ4_K \
33 192IQ4_KSS 233.676 GiB (4.180 BPW)1#!/usr/bin/env bash
2
3# Repeating Layers [0-61]
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)\.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# Non-Repeating Layers
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-Coder-480B-A35B-Instruct-GGUF/imatrix-Qwen3-Coder-480B-A35B-Instruct-Q8_0.dat \
32 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-BF16-00001-of-00021.gguf \
33 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-IQ4_KSS.gguf \
34 IQ4_KSS \
35 192IQ3_K 216.047 GiB (3.865 BPW)1#!/usr/bin/env bash
2
3# Repeating Layers [0-61]
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# Non-Repeating Layers
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-Coder-480B-A35B-Instruct-GGUF/imatrix-Qwen3-Coder-480B-A35B-Instruct-Q8_0.dat \
30 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-BF16-00001-of-00021.gguf \
31 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-IQ3_K.gguf \
32 IQ3_K \
33 192IQ2_KL 169.597 GiB (3.034 BPW)1#!/usr/bin/env bash
2
3custom="
4# Attention
5blk\..*\.attn_q.*=iq6_k
6blk\..*\.attn_k.*=q8_0
7blk\..*\.attn_v.*=q8_0
8blk\..*\.attn_output.*=iq6_k
9
10# Routed Experts
11blk\..*\.ffn_down_exps\.weight=iq3_k
12blk\..*\.ffn_(gate|up)_exps\.weight=iq2_kl
13
14# Non-Repeating Layers
15token_embd\.weight=iq4_k
16output\.weight=iq6_k
17"
18
19custom=$(
20 echo "$custom" | grep -v '^#' | \
21 sed -Ez 's:\n+:,:g;s:,$::;s:^,::'
22)
23
24numactl -N 0 -m 0 \
25./build/bin/llama-quantize \
26 --custom-q "$custom" \
27 --imatrix /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/imatrix-Qwen3-Coder-480B-A35B-Instruct-Q8_0.dat \
28 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-BF16-00001-of-00021.gguf \
29 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-IQ2_KL.gguf \
30 IQ2_KL \
31 192IQ2_K 144.640 GiB (2.588 BPW)lite-IQ2_K given it uses iq2_kl for ffn_down_exps instead of usual IQ3_K. This size and PPL is almost identical to an IQ2_KS.1#!/usr/bin/env bash
2
3# Repeating Layers [0-61]
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=iq2_kl
14blk\..*\.ffn_(gate|up)_exps\.weight=iq2_k
15
16# Non-Repeating Layers
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-Coder-480B-A35B-Instruct-GGUF/imatrix-Qwen3-Coder-480B-A35B-Instruct-Q8_0.dat \
30 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-BF16-00001-of-00021.gguf \
31 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-IQ2_K.gguf \
32 IQ2_K \
33 192IQ2_KS 144.126 GiB (2.578 BPW)1#!/usr/bin/env bash
2
3# Repeating Layers [0-61]
4
5custom="
6# Attention
7blk\..*\.attn_q.*=iq4_ks
8blk\..*\.attn_k.*=iq5_ks
9blk\..*\.attn_v.*=iq5_ks
10blk\..*\.attn_output.*=iq4_ks
11
12# Routed Experts
13blk\..*\.ffn_down_exps\.weight=iq3_ks
14blk\..*\.ffn_(gate|up)_exps\.weight=iq2_ks
15
16# Non-Repeating Layers
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-Coder-480B-A35B-Instruct-GGUF/imatrix-Qwen3-Coder-480B-A35B-Instruct-Q8_0.dat \
30 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-BF16-00001-of-00021.gguf \
31 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-IQ2_KS.gguf \
32 IQ2_KS \
33 192IQ1_KT 108.702 GiB (1.945 BPW)1blk\..*\.attn_q.*=iq4_kt
2blk\..*\.attn_k.*=iq4_kt
3blk\..*\.attn_v.*=iq4_kt
4blk\..*\.attn_output.*=iq4_kt
5
6# Routed Experts
7blk\..*\.ffn_down_exps\.weight=iq2_kt
8blk\..*\.ffn_(gate|up)_exps\.weight=iq1_kt
9
10# Non-Repeating Layers
11token_embd\.weight=iq4_kt
12output\.weight=iq6_k
13"
14
15custom=$(
16 echo "$custom" | grep -v '^#' | \
17 sed -Ez 's:\n+:,:g;s:,$::;s:^,::'
18)
19
20numactl -N 0 -m 0 \
21./build/bin/llama-quantize \
22 --custom-q "$custom" \
23 --imatrix /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/imatrix-Qwen3-Coder-480B-A35B-Instruct-Q8_0.dat \
24 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-BF16-00001-of-00021.gguf \
25 /mnt/raid/models/ubergarm/Qwen3-Coder-480B-A35B-Instruct-GGUF/Qwen3-Coder-480B-A35B-Instruct-IQ1_KT.gguf \
26 IQ1_KT \
27 1921./build/bin/llama-server \
2 --model /models/IQ2_KS/Qwen3-Coder-480B-A35B-Instruct-IQ2_KS.gguf \
3 --alias ubergarm/Qwen3-Coder-480B-A35B-Instruct \
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