Views
No views yet
v_dot4_f32_fp8_fp8 (decode) - not a dequant-to-f16 fallback. At
27B this is a 2-GPU model (tensor-split across two 32 GB R9700s).F8E4M3), block-scaled, produced by AMD Quark from BF16.Qwen3.6-27B-Quark-F8E4M3.gguf (29.3 GiB).| Metric | Value |
|---|---|
| Perplexity (wikitext, 20 chunks, n_ctx=512) | 7.14 |
Prefill pp512 (2-GPU) | 1251.6 t/s |
Decode tg128 (2-GPU) | 18.52 t/s |
| Coherence check ("dried grape" -> "raisin") | Pass |
1# -ngl 999 lets llama.cpp see and split across both R9700s
2llama-cli -m Qwen3.6-27B-Quark-F8E4M3.gguf -ngl 999 -p "What do you call a dried grape? Answer in one word."
3llama-bench -m Qwen3.6-27B-Quark-F8E4M3.gguf -ngl 999 -p 512 -n 1281podman run -d --rm --runtime crun --name lemonade \
2 --device /dev/kfd --device /dev/dri \
3 --group-add keep-groups --security-opt seccomp=unconfined \
4 -v /path/to/quacken-27b:/models:ro \
5 -e MODEL=/models/Qwen3.6-27B-Quark-F8E4M3.gguf -e MODEL_NAME=Quacken-27B-FP8 \
6 -p 13305:13305 \
7 ghcr.io/the-monk/the-rock8:rdna4-tr713 serve
8# note: 27B needs both GPUs - do NOT pin HIP_VISIBLE_DEVICES to a single card--runtime crun is required for GPU):
ghcr.io/the-monk/the-rock8:rdna4-tr713 - docker.io/gorilla4x/the-rock8:rdna4-tr713 - quay.io/the-monk/the-rock8:rdna4-tr713
(images may not be pushed to every registry yet).| Config | Decode t/s | vs raw |
|---|---|---|
| Raw fp8 decode | 18.67 | 1.00x |
| Omni: fp8 + MTP self-spec (draft-n=8) | 45.45 | 2.43x |
recipe_options (drop into user_models.json)1"Quacken-27B-FP8-Omni": {
2 "checkpoint": "Gorilla4X/Quacken-27B-FP8",
3 "recipe": "llamacpp",
4 "recipe_options": {
5 "llamacpp_backend": "rocm",
6 "llamacpp_args": "-ngl 999 --spec-type draft-mtp --spec-draft-n-max 8"
7 }
8}--spec-type draft-mtp flag routes decoding through the model's own MTP head; Lemonade
serves it on :13305 like any other model. (Raw llama.cpp equivalent:
llama-server -m Qwen3.6-27B-Quark-F8E4M3.gguf -ngl 999 --spec-type draft-mtp --spec-draft-n-max 8.)The async 2-GPU pipeline (LLAMA_SPEC_ASYNC=2) does not compose with MTP on this hybrid-SSM target - see Bonsai-8B-Ternary-RDNA4 for the async lever, which needs a dense target + a cheap ternary draft.