Views
No views yet
[!IMPORTANT] For llama.cpp on a single DGX Spark, use the newer REAP K216 IQ3_XXS build. It applies 0xSero's K216 map directly to Unsloth's stock quantized GGUF and copies retained expert rows byte-for-byte, avoiding the REAP-checkpoint → GGUF quantization path used here. The K216 build is 82.94 GiB and has generated successfully with configured 32K, 64K, and 128K contexts on GB10; 128K is the current recommendation. A 256K slot initializes but crashes on its first prompt in the current llama.cpp CUDA path.
[!WARNING] Experimental runtime compatibility (updated 2026-08-01):Q2_KandQ4_K_Mare not currently recommended. In controlled llama.cpp testing both repeatedly exhausted the output budget restating their plans without reaching an answer, including with the source model's sampling configuration.MXFP4produced a normal answer in the matched comparison, but full GPU offload of bothQ2_KandMXFP4exposed backend kernel failures on NVIDIA GB10. A Strix Halo user has separately reported looping withQ2_KandMXFP4. See Runtime status before downloading.
| File | Quant | Size | Status |
|---|---|---|---|
| DeepSeek-V4-Flash-0731-REAP-K160-MXFP4.gguf | MXFP4 (native) | 95 GB | Best result in limited testing; GPU-backend compatibility remains experimental |
| DeepSeek-V4-Flash-0731-REAP-K160-Q4_K_M.gguf | Q4_K_M | 102 GB | Not recommended: repetitive/non-answering behavior in controlled testing |
| DeepSeek-V4-Flash-0731-REAP-K160-Q2_K.gguf | Q2_K | ~65 GB | Not recommended: repetitive/non-answering behavior in controlled testing |
deepseek4 architecture and an unusual REAP-compacted K160 expert shape. Runtime support should currently be treated as experimental and backend-dependent.b10223 (11924d4c1), built for CUDA architecture 121a with GGML_CUDA_FA_ALL_QUANTS=ON:Q2_K, but full GPU execution failed at the first prompt in a CUDA quantized-matrix (MMQ) kernel.MXFP4 could likewise fail in its MMQ kernel depending on prompt shape.--cpu-moe) allowed diagnostic generation.Q2_K repeatedly restated its plan and never answered. This remained true after removing extra candidate filters with --top-k 0 --min-p 0.Q4_K_M behaved the same in two 512-token tests: one with the reported --top-k 20 configuration and one with --top-k 0 --min-p 0. Both remained entirely in repetitive planning and produced no final answer.MXFP4 transitioned from reasoning into a concrete answer under the originally reported --top-k 20 settings.Q4_K_M file does not safely fit on a 121 GiB GB10 system with --no-mmap: that configuration exhausted available memory before model initialization completed. A diagnostic run was possible with --load-mode mmap, 2K context, and --cpu-moe.-ngl 0 (CPU-only) or --cpu-moe changes the result.generation_config.json specifies temperature: 1.0 and top_p: 1.0; it does not specify top-k, min-p, or a repetition penalty. For a clean diagnostic run, avoid adding candidate filters:--temp 1.0 --top-p 1.0 --top-k 0 --min-p 0 --repeat-penalty 1.0deepseek4 support is under active development; validate the exact build and backend before relying on GPU inference.