Instructions to use kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-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-Flash-Next-ROCmFP4-STRIX-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-Flash-Next-ROCmFP4-STRIX-GGUF # Run inference directly in the terminal: llama cli -hf kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF # Run inference directly in the terminal: llama cli -hf kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF
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-Flash-Next-ROCmFP4-STRIX-GGUF # Run inference directly in the terminal: ./llama-cli -hf kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF
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-Flash-Next-ROCmFP4-STRIX-GGUF # Run inference directly in the terminal: ./build/bin/llama-cli -hf kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF
Use Docker
docker model run hf.co/kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF
- LM Studio
- Jan
- vLLM
How to use kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-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-Flash-Next-ROCmFP4-STRIX-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-Flash-Next-ROCmFP4-STRIX-GGUF", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF
- Ollama
How to use kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF with Ollama:
ollama run hf.co/kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF
- Unsloth Studio
How to use kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-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-Flash-Next-ROCmFP4-STRIX-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-Flash-Next-ROCmFP4-STRIX-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-Flash-Next-ROCmFP4-STRIX-GGUF to start chatting
- Pi
How to use kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-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-Flash-Next-ROCmFP4-STRIX-GGUF
Configure the model in Pi
# Install Pi: npm install -g @earendil-works/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-Flash-Next-ROCmFP4-STRIX-GGUF" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Docker Model Runner
How to use kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF with Docker Model Runner:
docker model run hf.co/kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF
- Lemonade
How to use kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF
Run and chat with the model
lemonade run user.Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF-{{QUANT_TAG}}List all available models
lemonade list
- Hermes Agent
How to use kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-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-Flash-Next-ROCmFP4-STRIX-GGUF
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-Flash-Next-ROCmFP4-STRIX-GGUF
Run Hermes
hermes
- Atomic Chat
- OpenClaw
How to use kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-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-Flash-Next-ROCmFP4-STRIX-GGUF
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-Flash-Next-ROCmFP4-STRIX-GGUF" \ --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"
Qwen3.8-Flash-Next — ROCmFP4 STRIX GGUF — AMD Ryzen AI Max+ 395 / Strix Halo / gfx1151
STRIX is the quality tier of the 4-bit family: Q4_0_ROCMFP4_STRIX — attention K/V on the
base Q4_0_ROCMFP4 type instead of the fast layout, the per-layer embedding (PLE) table at
Q8_0, token embeddings at Q6_K, and a Q6_K output head. Quantized directly from my own BF16
conversion of the release weights. 5.51 bpw overall, 113.5 GiB.
The PLE table is the whole story here: at Q8_0 it alone is 48.8 GiB. That is what buys this tier its quality margin over FAST, and it is why the file lands at 5.51 bpw.
| tensor | type | size |
|---|---|---|
| attention K/V | Q4_0_ROCMFP4 (base type, not fast) |
~2.5 GiB |
| MoE expert + remaining weights | Q4_0_ROCMFP4 family |
~61 GiB |
per_layer_token_embd.weight (the PLE table) |
Q8_0 |
48.8 GiB |
token_embd.weight |
Q6_K |
0.9 GiB |
output.weight (lm head) |
Q6_K |
0.5 GiB |
The Q6_K head
output.weight is kept at Q6_K, never 4-bit. An unprotected head ruins a 4-bit build: every
token you sample passes through the lm head, so its quantization error lands directly in the
argmax. On a sparse-MoE model the head is also one of the few dense matrices left, which makes
its error stand out even more. It is 0.3% of the master weights — pinning it to Q6_K costs
under half a GiB here and removes that entire error class.
⚠ Patched llama.cpp required
These files need a patched llama.cpp — PR #27742 merged into the ROCmFPX fork. Stock builds
will NOT load them: both the qwen4exp architecture support and the Q4_0_ROCMFP4_* tensor
types live in that fork. Build it for gfx1151:
-DGGML_HIP=ON -DGPU_TARGETS=gfx1151 -DGGML_NATIVE=ON
Measured
On my box — Ryzen AI MAX+ 395 (gfx1151, Radeon 8060S, ROCm 7.2.4), full offload
-ngl 999, 49/49 layers on GPU (the server's own load log: load_tensors: offloaded 49/49 layers to GPU):
- generation: 14.5 tok/s (single stream, greedy)
- prompt processing: not measured yet
Slower than the 4-bit tiers — that is the Q8_0 PLE table: more bytes per token, bought on purpose.
Files
Distributed as a single 113.5 GB file: Qwen3.8-Flash-Next-ROCmFP4-STRIX.gguf.
This tier cannot be sharded under the 50 GB mark. The PLE table at Q8_0 is a single 54.4 GB tensor, and GGUF cannot split one tensor across shard files — any shard set necessarily contains a file of at least 54.4 GB. So I ship one whole file instead; the Hub takes single files up to 500 GB.
| file | size |
|---|---|
Qwen3.8-Flash-Next-ROCmFP4-STRIX.gguf |
113.5 GB |
Usage
llama-server \
--model Qwen3.8-Flash-Next-ROCmFP4-STRIX.gguf \
--host 127.0.0.1 --port 8080 \
--n-gpu-layers 999 --fit off --no-warmup \
--ctx-size 2048 --threads 16 --jinja
Memory
The weights are 113.5 GiB. On my 128 GB Strix Halo all 49 layers place with -ngl 999
while another ~25 GB model is resident — unified memory absorbs it — but a clean GPU makes
placement obvious. Plan for ~115 GiB free.
Acknowledgements
This build would not exist without the work below. Please star and follow these projects — the quantisation format used here is their engineering, not mine.
ROCmFPX — the fork that defines the ROCmFP4 / ROCmFPX tensor formats and carries the
qwen4exp architecture support merged from PR #27742. Every ROCmFP4 file in this repository
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.
AMD ROCm — the compute platform these builds target (ROCm 7.2.4 on gfx1151).
Qwen team — the base model. See base_model for the source release; license is
qwen-community-1.0.
- Downloads last month
- -
We're not able to determine the quantization variants.
Model tree for kingjones777/Qwen3.8-Flash-Next-ROCmFP4-STRIX-GGUF
Base model
Qwen/Qwen3.8-Flash-Next