Instructions to use kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP # Run inference directly in the terminal: llama cli -hf kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP # Run inference directly in the terminal: llama cli -hf kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP # Run inference directly in the terminal: ./llama-cli -hf kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP # Run inference directly in the terminal: ./build/bin/llama-cli -hf kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
Use Docker
docker model run hf.co/kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
- LM Studio
- Jan
- vLLM
How to use kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
- Ollama
How to use kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF with Ollama:
ollama run hf.co/kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
- Unsloth Studio
How to use kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF to start chatting
- Pi
How to use kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP" } ] } } }Run Pi
# Start Pi in your project directory: pi
- OpenClaw new
How to use kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF with OpenClaw:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
Configure OpenClaw
# Install OpenClaw: npm install -g openclaw@latest # Register the local server and set it as the default model: openclaw onboard --non-interactive --mode local \ --auth-choice custom-api-key \ --custom-base-url http://127.0.0.1:8080/v1 \ --custom-model-id "kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP" \ --custom-provider-id llama-cpp \ --custom-compatibility openai \ --custom-text-input \ --accept-risk \ --skip-health
Run OpenClaw
openclaw agent --local --agent main --message "Hello from Hugging Face"
- Docker Model Runner
How to use kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF with Docker Model Runner:
docker model run hf.co/kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
- Lemonade
How to use kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
Run and chat with the model
lemonade run user.Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF-Q4_0_ROCMFP
List all available models
lemonade list
- Hermes Agent
How to use kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF:Q4_0_ROCMFP
Run Hermes
hermes
- Atomic Chat
Qwen3.8-27B — ROCmFP4 for AMD Strix Halo (gfx1151)
✅ the only public ROCmFP4 build of this model published with measured perplexity and an MTP tuning curve
Checked 2026-08-14 against all four other public ROCmFP4/ROCmFPX builds of Qwen3.8-27B. None publishes perplexity (one lists it as "TBD") and none publishes a
--spec-draft-n-maxsweep. Card-content comparison only — no third-party build was run or benchmarked here.
Three ROCmFP4 quantisations of Qwen3.8-27B for AMD Ryzen AI Max+ 395 / Radeon 8060S / gfx1151, bundled with the multi-token-prediction draft head. ROCmFP4 is a runtime tensor format that exists only in the ROCmFPX fork of llama.cpp.
The headline here is not the quantisation on its own — it is what the MTP head is worth once it is tuned, which turns out to be more than the quantisation itself.
| Metric | Result |
|---|---|
| Quantization | ROCmFP4 (ggml types 103 / 105 / 106), 3 variants |
| Model size | 13.33 – 13.75 GiB |
| Effective BPW | 4.25 – 4.39 (measured, not advertised) |
| Tested hardware | AMD Ryzen AI Max+ 395 (Strix Halo), 128 GB unified |
| GPU | Radeon 8060S, gfx1151 |
| ROCm version | 7.2.4 |
| 8K decode, MTP tuned | 30.30 tok/s (vs 10.70 for Q4_K_M — 2.83×) |
| 8K decode, no speculation | 13.46 tok/s (vs 10.70 — 1.26×) |
| 32K decode, no speculation | 12.58 tok/s (vs 10.12 — 1.24×) |
| Prompt processing, 8K | 317.6 tok/s (vs 306.0 for Q4_K_M) |
| Perplexity (wikitext-2, held out) | 5.8877 ± 0.068 vs 5.8926 ± 0.069 for Q4_K_M — parity |
Cold load, 13.7 GiB with -dio |
6.3 s (vs 9.4 s for Q4_K_M) |
| MTP acceptance | 0.926 at n-max 4 |
| Context validated | 65536 — see Not yet measured |
| Vision | ✅ 4/4 on spatial ground truth, and works with -fa on |
| Tool calling | ✅ 7/7 — and 7/7 again with thinking enabled |
Why this build?
- 2.83× the decode of a standard Q4_K_M on the same box, same binary, same flags — 30.30 vs 10.70 tok/s, once the MTP head is tuned
- Perplexity parity at 22% smaller: 5.8877 vs 5.8926, a 0.08% difference against ±1.2% error bars. No measurable quality cost for the missing bits.
- The MTP depth curve is published. llama.cpp's default
--spec-draft-n-maxis 16, which on this model gives roughly half the achievable throughput. The optimum is 3–4. - Prefill improves rather than regressing (+3.8%), which is unusual for a ROCmFP4 build
- Cold load in 6.3 s
- Every number below came off a quiesced machine with a 0.08% measured noise floor
Which file should I use?
Start with STRIX. All three variants measured identical in speed, so there is no speed reason
to take fewer bits.
Ryzen AI Max+ 395, ROCm 7.2.4, ctx 65536, batch 1, greedy (temp 0, top_k 1), ignore_eos so every
arm generates exactly 256 tokens, unique nonce per request and cache_prompt: false so the prefix
cache never serves a hit (cached_tokens = 0 verified on every run). Median of 3–5 reps.
| Build | ftype | Size | BPW | TG 8K (no spec) | TG 8K (MTP) | PPL |
|---|---|---|---|---|---|---|
ROCmFP4-STRIX |
105 | 13.75 GiB | 4.39 | 13.46 | 30.30 | 5.8877 |
ROCmFP4-STRIX_LEAN |
106 | 13.59 GiB | 4.34 | 13.46 | — | 5.8871 |
ROCmFP4-FAST |
103 | 13.33 GiB | 4.25 | 13.44 | 30.13 | 5.9233 |
Q4_K_M (reference, ggml-org) |
— | 17.67 GiB | — | 10.70 | — | 5.8926 |
The variants are speed-equivalent, and that is the finding. 13.44 / 13.46 / 13.46 tok/s is a 0.15% spread — smaller than most measurement noise, and this instrument's noise floor is 0.08%. The ftype names imply a size/speed trade that does not materialise on this architecture: decode here is not purely weight-bandwidth-bound, so shaving 3% off the file buys nothing. Take the bits.
FAST (103) is therefore dominated on this model — the same speed as STRIX but the highest
perplexity of the three, and the only one above the Q4_K_M reference. It is published for
completeness and for anyone who wants the smallest file, not because it is a good default. (On other
architectures FAST genuinely is faster; on this one it is not.)
STRIX and STRIX_LEAN are indistinguishable in perplexity (5.8877 vs 5.8871, ±0.068) and that gap
should not be read as ranking them — STRIX is recommended on bit-count. Note also that
perplexity measures next-token prediction on prose; it is not a proxy for code-execution
correctness, where the extra bits in STRIX have mattered on other models.
ROCmFP4-BASE (ftype 100) is not published here: it is larger and, on every axis measured, not
better.
Quick start
hf download kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF --local-dir qwen38
llama-server \
-m qwen38/Qwen3.8-27B-Q4_0_ROCMFP4_STRIX.gguf \
--spec-type draft-mtp \
--model-draft qwen38/mtp-Qwen3.8-27B-Q4_0.gguf \
--spec-draft-ngl 99 --spec-draft-device ROCm0 \
--spec-draft-n-max 4 --spec-draft-n-min 0 --spec-draft-p-min 0.0 \
-ngl 999 -fa on -dio --jinja -fit off --parallel 1 -dev ROCm0 \
-c 65536 --host 127.0.0.1 --port 8080
The ROCm environment prefix is mandatory on a machine that also has a Vulkan llama.cpp build, to avoid a soname clash:
env LD_LIBRARY_PATH=/path/to/ROCmFPX/build/bin:/opt/rocm/lib \
HSA_OVERRIDE_GFX_VERSION=11.5.1 GGML_HIP_ENABLE_UNIFIED_MEMORY=1 llama-server ...
Requires a llama.cpp built with ROCmFP4 support (ggml types 100–106). Stock llama.cpp rejects these tensor types.
Four flags that matter more than which file you pick
| Flag | Why |
|---|---|
--spec-draft-n-max 4 |
The default is 16, which lands far down the far side of the curve — 19.17 tok/s at n-max 12 versus 30.30 at 4. This single flag is worth more than the quantisation choice. |
--spec-draft-ngl 99 |
Without it the draft head can be placed on CPU and the speculative gain disappears entirely. |
--jinja |
Required, or chat_template_kwargs are silently ignored — including the thinking controls below. |
-fit off |
llama.cpp's autofit reads MemAvailable on integrated GPUs, and that is at its lowest right after a model unload. Leaving it on can silently shrink context or push tensors to CPU. |
-dio is also worth setting: it cold-loads the 13.7 GiB file in 6.3 s.
Speculative decoding (MTP)
Qwen3.8-27B ships a multi-token-prediction head — nextn_predict_layers = 1, published
separately by ggml-org as an 18-tensor draft
model (block_count = 65: the 64 base layers plus one nextn layer, with its own embeddings and
output head). The quants in this repository contain the 64 base layers only; the head is a separate
--model-draft file and is bundled here.
--spec-draft-n-max |
decode @8K | vs Q4_K_M | acceptance |
|---|---|---|---|
| off | 13.46 | 1.26× | — |
| 1 | 21.74 | 2.03× | 0.881 |
| 2 | 27.79 | 2.60× | 0.917 |
| 3 | 30.13 | 2.82× | 0.875 |
| 4 | 30.30 | 2.83× | 0.926 |
| 5 | 27.52 | 2.57× | 0.844 |
| 6 | 27.55 | 2.58× | 0.900 |
| 8 | 21.87 | 2.04× | 0.875 |
| 12 | 19.17 | 1.79× | 0.845 |
Classic rise / knee / decline: past n-max 4 the draft head's cost grows linearly while acceptance
compounds downward, and wasted draft work dominates.
⚠️ Use the Q4_0 draft head, not Q8_0. The head's per-step cost is dominated by its output
projection over a 248K-token vocabulary, so the cheaper head is faster end to end at equal or
better acceptance — and the advantage widens with depth: +6.0% at n-max 1, +10.2% at
n-max 2. Both are bundled so you can check this yourself.
MTP costs about 6% of prefill (326 → 293 tok/s at 8K). That is the honest trade against ~2.2× decode.
For scale: the memory-bandwidth ceiling for a dense 27B at ~13.7 GiB on this hardware is roughly 18.6 tok/s. Speculative decoding clears it because several tokens are produced per weight read. This is a dense model — all 27B parameters are read on every token — which is why the ceiling is low and why MTP matters so much more here than it would on a sparse MoE.
Tool calling
7/7, and 7/7 again with thinking enabled. Run against this build through llama-swap, scored on
whether llama.cpp populates native tool_calls — raw XML appearing in content counts as a
failure, since that is the known breakage when the parser does not match the template's format.
| Case | thinking (reasoning_effort: low) |
non-thinking |
|---|---|---|
| multi-arg (string / int / bool) | ✅ | ✅ |
| nested object argument | ✅ | ✅ |
| enum constraint | ✅ | ✅ |
| correctly declines (no spurious call) | ✅ | ✅ |
| multi-turn tool-result follow-up | ✅ | ✅ |
| streaming tool-call deltas | ✅ | ✅ |
| two parallel calls in one turn | ✅ | ✅ |
| Total | 7/7 | 7/7 |
⭐ Tool calling and reasoning are not mutually exclusive on this model. Both arms scored 7/7, so
you can run tools with reasoning_effort active — no need to disable thinking for agent work.
⭐ Parallel calls work. This is worth calling out because it is a common failure point: several open-weight models emit only the first call when asked for two in one turn. This one returns both.
Requires --jinja. The template emits the XML-style Qwen3-Coder tool format
(<tool_call><function=name><parameter=arg>…), and llama.cpp parses it into native tool_calls —
verified with nested objects surviving as real JSON objects rather than flattened strings.
Raw example (nested object, as returned):
{"name": "book_flight",
"arguments": {"passenger": {"name": "Alice Smith", "age": 34},
"route": "LHR-JFK", "cabin": "business"}}
Vision
Works, and is verified for spatial correctness rather than plausible-sounding output. A four-quadrant colour image is scored on whether each colour lands in the right corner — a misapplied attention mask names colours confidently but places them wrongly, so this distinguishes a working projector from a fluent-but-broken one.
-fa |
Result |
|---|---|
on |
4/4 |
off |
4/4 |
llama-server -m Qwen3.8-27B-Q4_0_ROCMFP4_STRIX.gguf \
--mmproj mmproj-Qwen3.8-27B-BF16.gguf \
-ngl 999 -fa on -dio --jinja -c 16384
Vision does not require -fa off on this model. Both settings scored 4/4, so text and images
can be served from one endpoint with flash attention enabled — there is no accuracy-versus-speed
split to manage here.
Architecture note
Qwen3.8-27B is dense with hybrid attention: 64 layers, full_attention_interval = 4, so 16
full-attention layers and 48 linear/SSM layers.
Two practical consequences:
- KV cache is cheap. Only 16 of 64 layers grow with context, so decode barely decays with length — 13.46 tok/s at 8K versus 12.58 at 32K, a 6.5% drop over 4× the context.
- Prompt caching does not work. llama.cpp reports
forcing full prompt re-processing due to lack of cache data (SWA or hybrid/recurrent memory)and reprocesses the entire prompt every turn. This is an upstream limitation of hybrid-memory models, not a property of these quants. Budget for full prefill on each turn in multi-turn use.
Sampling
Qwen publishes two profiles. Note repetition_penalty stays at 1.0 in both — the intended lever is
presence_penalty.
| thinking | instruct (non-thinking) | |
|---|---|---|
temperature |
1.0 | 0.7 |
top_p |
0.95 | 0.80 |
top_k |
20 | 20 |
min_p |
0.0 | 0.0 |
presence_penalty |
0.0 | 1.5 |
repetition_penalty |
1.0 | 1.0 |
presence_penalty above 1.5 can cause language mixing.
⛔ The reasoning-effort trap
Thinking is on by default at reasoning_effort: "xhigh". With a small max_tokens the whole
budget goes to reasoning and content comes back empty — the model looks broken when it is not.
The chat template accepts only xhigh, medium, low. Anything else raises:
Unexpected reasoning effort {...}. Supported types are xhigh (default), medium, and low.
In particular reasoning_effort: "none" is not valid and will throw. To disable thinking, use
the separate flag:
--chat-template-kwargs '{"enable_thinking":false}'
To keep thinking but bound it, use '{"reasoning_effort":"low"}'.
Quantization methodology
# 1. measure the real BPW first — the help text is not reliable
llama-quantize --dry-run Qwen3.8-27B-BF16.gguf /tmp/x.gguf Q4_0_ROCMFP4_STRIX 8
# 2. quantize (~150 s for 27B at 16 threads)
llama-quantize Qwen3.8-27B-BF16.gguf Qwen3.8-27B-Q4_0_ROCMFP4_STRIX.gguf Q4_0_ROCMFP4_STRIX 16
Source: Qwen3.8-27B-BF16.gguf (50.11 GiB, 851 tensors) from
ggml-org/Qwen3.8-27B-GGUF. Architecture is
qwen35, already supported by the ROCmFPX fork — no porting was required for this model.
The dry-run step is not ceremony: the help text advertises STRIX at ~4.49 BPW and the real figure here is 4.39.
These were produced on the quantizer's unweighted reference path. The fork also has an
importance-matrix path (rocmfp4_quantize_row_*_weighted, with an exhaustive weighted scale search)
which is not used here — see Not yet measured.
Files
| File | Size | Role |
|---|---|---|
Qwen3.8-27B-Q4_0_ROCMFP4_STRIX.gguf |
13.75 GiB | model — recommended |
Qwen3.8-27B-Q4_0_ROCMFP4_STRIX_LEAN.gguf |
13.59 GiB | model — equivalent to STRIX on every measure taken |
Qwen3.8-27B-Q4_0_ROCMFP4_FAST.gguf |
13.33 GiB | model — smallest, but no faster and slightly worse PPL |
mtp-Qwen3.8-27B-Q4_0.gguf |
1.56 GiB | MTP draft head (ggml-org's, unmodified) — use this |
mtp-Qwen3.8-27B-Q8_0.gguf |
2.95 GiB | MTP draft head, higher precision — measurably slower |
mmproj-Qwen3.8-27B-BF16.gguf |
0.87 GiB | vision projector (ggml-org's, unmodified) — verified 4/4 |
The draft heads are redistributed unmodified from ggml-org/Qwen3.8-27B-GGUF so the repo is self-contained.
Not yet measured
Listed so nobody mistakes absence for a pass:
| Test | Status |
|---|---|
| Context scaling beyond 65536 (native is 262144) | ❓ only 8K and 32K prompts measured |
| Vision beyond the spatial smoke test (OCR, charts, video) | ❓ only 4-quadrant placement verified |
| Multi-step agentic loop (plan → act → observe → finish) | ❓ not run; the 7 tool cases are single-step plus one follow-up |
| Imatrix-weighted ROCmFP4 build | ❓ not built — the fork supports it; these use the reference path |
| KL divergence vs BF16 | ❓ not measured (perplexity is) |
| MMLU-Pro, GPQA, GSM8K, HumanEval+ | ❓ not run |
| Long-context needle retrieval | ❓ not run |
| Sustained multi-thousand-token generation | ❓ not measured |
| Independent reproduction | ❓ none yet |
Perplexity caveat. 40 chunks at ctx 2048 on held-out wikitext-2 (never used for any calibration here). It is a regression guard strong enough to say no measurable quality loss versus Q4_K_M; it is not a capability benchmark and says nothing about coding, tool use or long-context behaviour.
Known issues
- Vulkan / CUDA / CPU cannot load these files — ROCmFP4 is a ROCm-only tensor format.
- Prompt caching is disabled by the architecture — every turn reprocesses the full prompt.
- Small
max_tokensreturns emptycontent— the budget goes to reasoning. Allow several hundred tokens, or setenable_thinking: false. reasoning_effort: "none"throws — it is not a valid value despite appearing in some third-party documentation. Useenable_thinking: false.--spec-draft-n-maxdefaults to 16, roughly halving throughput on this model.
Independent results
None yet. If you run this build, please open a discussion with hardware, GPU, ROCm version, runtime commit, exact command, context, prompt-processing tok/s, generation tok/s and peak RAM. Independent reproductions will be listed separately from author benchmarks and carry more weight.
License and attribution
Base model and MTP draft head are the Qwen team's, under Apache 2.0. ROCmFP4 quantisation types are from the ROCmFPX fork of llama.cpp. This repository contains the quantised weights and the measurements above.
Acknowledgements
ROCmFPX — maintained by
charlie12345
The ROCmFP4 / ROCmFPX tensor formats (ggml types 100–106) exist only in this fork. Every ROCmFP4
file here was produced with its llama-quantize and runs on its runtime. Licensed MIT, based on
upstream llama.cpp.
llama.cpp — ggml-org and contributors The inference engine, GGUF format and conversion tooling everything here is built on, and the source of the BF16 and MTP GGUFs used.
AMD ROCm — the compute platform these builds target, ROCm 7.2.4 on gfx1151 / Radeon 8060S.
Qwen team — the base model, its MTP head and its licence are theirs. This repository contributes quantisation and measurement only.
If you use these files, please credit ROCmFPX alongside this repository.
- Downloads last month
- -
4-bit
8-bit
Model tree for kingjones777/Qwen3.8-27B-ROCmFP4-STRIX-MTP-GGUF
Base model
Qwen/Qwen3.8-27B