Views
No views yet
ik_llama.cpp imatrix Quantizations of Qwen/Qwen3-30B-A3Bik_llama.cpp can also run your existing GGUFs from bartowski, unsloth, mradermacher, etc if you want to try it out before downloading my quants.r/LocalLLaMA for tips and tricks helping each other run all the fun new models!-nkvo -ctk q8_0 -ctv q8_0 and use -rtr for RAM optimized tensor packing on startup (without mmap() support) taking ~18396MiB of VRAM or less by offloading repeating layers to CPU as well at decreased speed.17.679 GiB (4.974 BPW)
f32: 241 tensors
q8_0: 6 tensors
iq4_k: 96 tensors
iq5_k: 48 tensors
iq6_k: 188 tensors
Final estimate: PPL = 9.1184 +/- 0.07278 (wiki-test.raw, compare to BF16 at 9.0703 +/- 0.07223)
*NOTE*: Benchmarks including PPL with `wiki.test.raw` and KLD with `ubergarm-kld-test-corpus.txt` are looking interesting! Will publish soon!ik_llama.cpp API server for GPU inferencing1# This example for ~21468MiB VRAM Usage
2./build/bin/llama-server
3 --model ubergarm/Qwen3-30B-A3B-GGUF/Qwen3-30B-A3B-mix-IQ4_K \
4 --alias ubergarm/Qwen3-30B-A3B-mix-IQ4_K \
5 -fa \
6 -ctk f16 -ctv f16 \
7 -c 32768 \
8 -fmoe \
9 -ngl 99 \
10 --threads 1
11 --host 127.0.0.1 \
12 --port 8080-ctk q4_0 -ctv q4_0--parallel N to have (context / N) available per slot1#!/usr/bin/env bash
2
3custom="
4# Attention (give Layer 0 a little extra as it scores lowest on cosine-similarity score)
5blk\.0\.attn_k.*=q8_0
6blk\.0\.attn_q.*=q8_0
7blk\.0\.attn_v.*=q8_0
8blk\.0\.attn_output.*=q8_0
9
10blk\..*\.attn_k.*=iq6_k
11blk\..*\.attn_q.*=iq6_k
12blk\..*\.attn_v.*=iq6_k
13blk\..*\.attn_output.*=iq6_k
14
15# Token Embedding (put these second so attn_output regex doesn catch too early)
16token_embd\.weight=q8_0
17output\.weight=q8_0
18
19# Experts
20blk\..*\.ffn_down_exps\.weight=iq5_k
21blk\..*\.ffn_(gate|up)_exps\.weight=iq4_k
22"
23
24custom=$(
25 echo "$custom" | grep -v '^#' | \
26 sed -Ez 's:\n+:,:g;s:,$::;s:^,::'
27)
28
29./build/bin/llama-quantize \
30 --custom-q "$custom" \
31 --imatrix /mnt/raid/models/ubergarm/Qwen3-30B-A3B-GGUF/imatrix-Qwen3-30B-A3B.dat \
32 /mnt/raid/models/Qwen/Qwen3-30B-A3B/Qwen3-30B-A3B-BF16-00001-of-00002.gguf \
33 /mnt/raid/models/ubergarm/Qwen3-30B-A3B-GGUF/Qwen3-30B-A3B-mix-IQ4_K.gguf \
34 IQ4_K \
35 24llama-sweep-bench I'm getting over 1600 tok/sec PP and 105 tok/sec TG on my 3090TI FE 24GB VRAM. It does slow down of course as it gets deeper into the full 32k context. Check the linked Benchmarks Discussion for updates as this is all pretty fresh right now. Pretty amazing performance both in terms of generation quality and speed for a model this size!
