REAM-pruned and AWQ-quantized variant of
Qwen/Qwen3-Coder-30B-A3B-Instruct, built end-to-end from the upstream BF16 base. 128 experts merged down to 96 (~30B → ~23B total params; 3B active retained), then 4-bit AWQ-quantized for AMD RDNA4 (gfx1201) inference with
SGLang.
1# vLLM
2from vllm import LLM
3llm = LLM(model="mattbucci/Qwen3-Coder-30B-A3B-REAM-AWQ",
4 quantization="moe_wna16", dtype="bfloat16")
5
6# SGLang (CLI)
7python -m sglang.launch_server \
8 --model-path mattbucci/Qwen3-Coder-30B-A3B-REAM-AWQ \
9 --quantization moe_wna16 --dtype bfloat16
For other inference engines, this is a standard AWQ 4-bit checkpoint (group_size=128, asymmetric, fused MoE) and should load via transformers + autoawq without modification.
REAM-merged + calibrated + smoke-tested on 2× AMD Radeon AI PRO R9700 (gfx1201, RDNA4, 64 GB total VRAM) with ROCm 7.2 and SGLang v0.5.10/v0.5.11.
Source code for the build pipeline (RDNA4 patches, calibration scripts, conversion utilities):
https://github.com/mattbucci/2x-R9700-RDNA4-GFX1201-sglang-inference