philtheriver/Qwen3.6-27B-ROCmFPX

Model

6

stars

13

commits

1

linked in READMEs

Jun 23, 2026

updated

amd
conversational
endpoints_compatible
gfx1151
gguf
imatrix
llama.cpp
mtp
qwen3
rocm
rocmfpx
strix-halo
text-generation
vision
Browse cluster: LLM Model Quantization & ROCm Optimization

README

Qwen3.6-27B · ROCmFPX

Stock Q6_K quality, ~30% faster prompt-processing on AMD Strix Halo (gfx1151)

ROCmFPX 3→8-bit quants of unsloth/Qwen3.6-27B-MTP-GGUF — the general-purpose base, with MTP speculative decoding + Qwen3-VL vision. Neutral imatrix calibration, so base behavior is preserved (not skewed toward code).

Quality≈ stock Q6_K (PPL within error)
Prompt processing+29% vs Q6_K (short ctx) → +20% at 64k — measured
Decode~18 tok/s with MTP (~9 raw)
VisionQwen3-VL — bundled mmproj/

⚠️ Requires the ROCmFPX fork (build main — the FP* types are merged in) — custom AMD quant types (enum IDs 110–115), not upstream-stable. Won't load in stock llama.cpp / LM Studio / Ollama. HF's precision badge is wrong — pick the file by name.

Pick a tier

File suffixSizeBest for
…embF16-headQ6-Q6_0_ROCMFPX.gguf23Gbest overall — the flagship
…embF16-Q8_0_ROCMFPX.gguf28Gmaximum fidelity
…embF16-Q4_0_ROCMFP4.gguf19Gfastest decode (4-bit)
…embF16-Q3_0_ROCMFPX.gguf16Gsmallest

All filenames prefixed Qwen3.6-27B-STRIX-.

Quick start

# build the fork once — main already has the ROCmFPX quant types
git clone https://github.com/charlie12345/ROCmFPX.git && cd ROCmFPX
JOBS=16 scripts/build-strix-rocmfp4-mtp.sh

# serve the flagship — MTP + vision
HSA_OVERRIDE_GFX_VERSION=11.5.1 build-strix-rocmfp4/bin/llama-server \
  -m Qwen3.6-27B-STRIX-embF16-headQ6-Q6_0_ROCMFPX.gguf \
  -dev ROCm0 -ngl 999 -fa on -c 32768 \
  --spec-type draft-mtp --spec-draft-ngl all --spec-draft-n-max 2 \
  --jinja --mmproj mmproj/mmproj-F32.gguf --host 0.0.0.0 --port 8080

Tool calls: serve with --jinja so the model's own chat template emits them — no special parser flag needed.

All tiers · recipe · benchmarks

All tiers

File suffixPresetEnumSizeRole
embF16-headQ6-Q6_0_ROCMFPX.ggufQ6_0_ROCMFPX11023Gflagship — f16 emb + Q6_K head + imatrix
embF16-Q8_0_ROCMFPX.ggufQ8_0_ROCMFPX11128Ghighest fidelity
embF16-Q4_0_ROCMFP4.ggufQ4_0_ROCMFP410019Gfastest decode (4-bit body)
embF16-Q3_0_ROCMFPX.ggufQ3_0_ROCMFPX11216Gsmallest

f16 token embeddings throughout. (HF labels Q4/Q8 but not Q6/Q3 — the latter aren't standard llama.cpp quant names; pick by filename.)

Verification (Strix Halo gfx1151)

MetricValue
Functional smokechat/coding/JSON/tool-call/coherency ✅ (5/5)
PPL vs Q6_Kflagship 5.7030 vs stock Q6_K 5.6618 → Δ +0.73% (general slice, ctx 512)

Performance — prompt-processing throughput (t/s) vs Q6_K

ContextQ6_KflagshipΔ
pp512188242+29%
pp2048191245+28%
pp10k180228+27%
pp16k172217+26%
pp32k156193+23%
pp64k133159+20%

Clean dedicated-GPU llama-bench (both servers stopped, warm-up pass discarded). The gfx1151-tuned ROCmFPX kernels win the compute-bound prefill — the edge is largest at short context and narrows to +20% at 64k as O(n²) attention takes over. Decode is bandwidth-bound (≈ Q6_K raw), and MTP (--spec-type draft-mtp) ~doubles it in serving. Single-rep llama-bench; treat absolutes as ±a few %.

Credits & license

Apache-2.0 (inherited). Qwen3.6 (base) → charlie12345 / ROCmFPX (quant fork). ROCmFPX quantization by this repo's author.

Contributors

philtheriver

13 commits

philtheriver/Qwen3.6-27B-ROCmFPX

Model

6

stars

13

commits

1

linked in READMEs

Jun 23, 2026

updated

amd
conversational
endpoints_compatible
gfx1151
gguf
imatrix
llama.cpp
mtp
qwen3
rocm
rocmfpx
strix-halo
text-generation
vision
Browse cluster: LLM Model Quantization & ROCm Optimization

README

Qwen3.6-27B · ROCmFPX

Stock Q6_K quality, ~30% faster prompt-processing on AMD Strix Halo (gfx1151)

ROCmFPX 3→8-bit quants of unsloth/Qwen3.6-27B-MTP-GGUF — the general-purpose base, with MTP speculative decoding + Qwen3-VL vision. Neutral imatrix calibration, so base behavior is preserved (not skewed toward code).

Quality≈ stock Q6_K (PPL within error)
Prompt processing+29% vs Q6_K (short ctx) → +20% at 64k — measured
Decode~18 tok/s with MTP (~9 raw)
VisionQwen3-VL — bundled mmproj/

⚠️ Requires the ROCmFPX fork (build main — the FP* types are merged in) — custom AMD quant types (enum IDs 110–115), not upstream-stable. Won't load in stock llama.cpp / LM Studio / Ollama. HF's precision badge is wrong — pick the file by name.

Pick a tier

File suffixSizeBest for
…embF16-headQ6-Q6_0_ROCMFPX.gguf23Gbest overall — the flagship
…embF16-Q8_0_ROCMFPX.gguf28Gmaximum fidelity
…embF16-Q4_0_ROCMFP4.gguf19Gfastest decode (4-bit)
…embF16-Q3_0_ROCMFPX.gguf16Gsmallest

All filenames prefixed Qwen3.6-27B-STRIX-.

Quick start

# build the fork once — main already has the ROCmFPX quant types
git clone https://github.com/charlie12345/ROCmFPX.git && cd ROCmFPX
JOBS=16 scripts/build-strix-rocmfp4-mtp.sh

# serve the flagship — MTP + vision
HSA_OVERRIDE_GFX_VERSION=11.5.1 build-strix-rocmfp4/bin/llama-server \
  -m Qwen3.6-27B-STRIX-embF16-headQ6-Q6_0_ROCMFPX.gguf \
  -dev ROCm0 -ngl 999 -fa on -c 32768 \
  --spec-type draft-mtp --spec-draft-ngl all --spec-draft-n-max 2 \
  --jinja --mmproj mmproj/mmproj-F32.gguf --host 0.0.0.0 --port 8080

Tool calls: serve with --jinja so the model's own chat template emits them — no special parser flag needed.

All tiers · recipe · benchmarks

All tiers

File suffixPresetEnumSizeRole
embF16-headQ6-Q6_0_ROCMFPX.ggufQ6_0_ROCMFPX11023Gflagship — f16 emb + Q6_K head + imatrix
embF16-Q8_0_ROCMFPX.ggufQ8_0_ROCMFPX11128Ghighest fidelity
embF16-Q4_0_ROCMFP4.ggufQ4_0_ROCMFP410019Gfastest decode (4-bit body)
embF16-Q3_0_ROCMFPX.ggufQ3_0_ROCMFPX11216Gsmallest

f16 token embeddings throughout. (HF labels Q4/Q8 but not Q6/Q3 — the latter aren't standard llama.cpp quant names; pick by filename.)

Verification (Strix Halo gfx1151)

MetricValue
Functional smokechat/coding/JSON/tool-call/coherency ✅ (5/5)
PPL vs Q6_Kflagship 5.7030 vs stock Q6_K 5.6618 → Δ +0.73% (general slice, ctx 512)

Performance — prompt-processing throughput (t/s) vs Q6_K

ContextQ6_KflagshipΔ
pp512188242+29%
pp2048191245+28%
pp10k180228+27%
pp16k172217+26%
pp32k156193+23%
pp64k133159+20%

Clean dedicated-GPU llama-bench (both servers stopped, warm-up pass discarded). The gfx1151-tuned ROCmFPX kernels win the compute-bound prefill — the edge is largest at short context and narrows to +20% at 64k as O(n²) attention takes over. Decode is bandwidth-bound (≈ Q6_K raw), and MTP (--spec-type draft-mtp) ~doubles it in serving. Single-rep llama-bench; treat absolutes as ±a few %.

Credits & license

Apache-2.0 (inherited). Qwen3.6 (base) → charlie12345 / ROCmFPX (quant fork). ROCmFPX quantization by this repo's author.

Contributors

philtheriver

13 commits