Views
No views yet
| build | size | notes |
|---|---|---|
...-Q3-ROCmFP4-* (4 shards) | 100.45 GiB | lower-bit build |
...-Q4_0_ROCMFP4_STRIX-* (4 shards) | 140.98 GiB | ftype 105 STRIX — Strix Halo attn-K/V recipe |
Q4_0_ROCMFP4_* quant types — see charlie12345/ROCmFPX.COHERENT plus explicit
--output-tensor-type q6_K --token-embedding-type q6_K. This STRIX build predates that finding.deepseek-ai/DeepSeek-V4-Flash-0731, built to fit a single AMD Strix Halo box (128 GB unified memory) with full GPU offload. As far as I can tell it's the first ROCmFP4 quant of this model. I made it with the ROCmFPX fork of llama.cpp for the gfx1151 (Radeon 8060S / Ryzen AI MAX+ 395) Vulkan/ROCm stack.| Base model | deepseek-ai/DeepSeek-V4-Flash-0731 |
| Quant | Q3 — mixed ROCmFP4, experts ~3.14 bpw, 2.92 BPW overall |
| Size | ~101 GB (fits 128 GB unified memory with headroom) |
| Arch | deepseek4 (sparse MoE, 256 experts, indexer/DSA attention) |
| Target HW | AMD Strix Halo gfx1151 iGPU (Ryzen AI MAX+ 395), Vulkan RADV |
| Loader | ROCmFPX fork — stock llama.cpp cannot load ROCmFP4 tensors |
llama-quantize):Q2_0_ROCMFPXffn_down_exps → q3_0_rocmfpx (3.5 bpw)ffn_gate_exps, ffn_up_exps → q2_0_rocmfpx (2.5 bpw)_ROCMFPX) types hold quality better than equivalent-bit k-quants on this hardware while using the FP4 paths on gfx1151.1export HSA_OVERRIDE_GFX_VERSION=11.5.1 GGML_HIP_ENABLE_UNIFIED_MEMORY=1
2export AMD_VULKAN_ICD=RADV VK_ICD_FILENAMES=/usr/share/vulkan/icd.d/radeon_icd.json
3
4./llama-server \
5 -m DeepSeek-V4-Flash-0731-Q3-ROCmFP4-00001-of-00004.gguf \
6 -dev Vulkan0 -ngl 999 -fa on -fit off --no-mmap \
7 -c 8192 -n 2048 -np 1 -b 1024 -ub 512 -t 16 --poll 50 --jinja \
8 --reasoning-format deepseek \
9 --chat-template-kwargs '{"enable_thinking":false}' \
10 --host 0.0.0.0 --port 8084-fit off — the fork's auto-fit step crashed on this arch for me; pin -ngl 999 and turn it off.--no-mmap — important for MoE speed. With mmap, experts page-fault per token and throughput roughly halves.-c 8192 with -b 1024 -ub 512 keeps the graph pool under its limit; larger context can overflow it.-n 2048 caps runaway generations so one request can't hold the single slot forever.--chat-template-kwargs '{"enable_thinking":false}' gives fast, direct answers. Drop it (or pass enable_thinking:true per request) for the model's reasoning mode.deepseek-ai/DeepSeek-V4-Flash-0731; the original model's license applies (see license_link). This upload is only a quantization — all capabilities and limitations are the base model's.deepseek-ai/DeepSeek-V4-Flash-0731. Generated from Hub metadata; download counts move over time.charlie12345 / caf
The ROCmFP4 / ROCmFPX tensor formats (ggml types 100–106) exist only in this fork.
Every ROCmFP4 file in this repository was produced with its llama-quantize, and
runs on its runtime. The fork also credits collaborators ciru-ai, Tom Turney,
PlunderStruck and Aydan S., and acknowledges AMD for hardware support.
Licensed MIT, based on upstream llama.cpp.base_model in the metadata above; all model weights,
licences and capabilities are theirs. This repository contributes quantisation and
measurement only.