GraySoft
Projects Models Compare Cloud benchmarks FAQ Download guIDE →
Model Intelligence Sheet

quimmedes/Qwen3.8-Flash-Next-MTP-GGUF overview

Qwen 3.8 Flash Next MTP Draft Speculative Model GGUF This repository provides working MTP Multi Token Prediction draft models in GGUF format for Qwen 3.8 Flash…

ggufllama.cppspeculative-decodingmtpqwenbase_model:Qwen/Qwen3.8-Flash-Nextbase_model:quantized:Qwen/Qwen3.8-Flash-Nextlicense:apache-2.0endpoints_compatibleregion:usconversational

Runs locally from ~2.59 GB disk (4 GB VRAM class GPUs with llama.cpp / guIDE).

Downloads
8,656
Likes
13
Pipeline
Author

Repository Files & Downloads

4 GGUF files detected
Direct downloads for local inference
FileTypeQuantizationSizeLink
mtp-Qwen3.8-Flash-Next-BF16.ggufGGUFBF167.24 GBDownload
mtp-Qwen3.8-Flash-Next-Q4_K_M.ggufGGUFQ4_K_M2.59 GBDownload
mtp-Qwen3.8-Flash-Next-Q6_K.ggufGGUFQ6_K3.17 GBDownload
mtp-Qwen3.8-Flash-Next-Q8_0.ggufGGUFQ8_03.85 GBDownload

Model Details

Model IDquimmedes/Qwen3.8-Flash-Next-MTP-GGUF
Authorquimmedes
Pipeline
Licenseapache-2.0
Base modelQwen/Qwen3.8-Flash-Next
Last modified2026-09-03T14:31:53.000Z

Model README

---

license: apache-2.0

base_model: Qwen/Qwen3.8-Flash-Next

tags:

  • llama.cpp
  • speculative-decoding
  • mtp
  • gguf
  • qwen

---

Qwen 3.8 Flash Next - MTP Draft Speculative Model (GGUF)

This repository provides working MTP (Multi-Token Prediction) draft models in GGUF format for Qwen 3.8 Flash Next (and experimental architectures with hyper-connections / QSA / Hadamard KV rotations), powered by cafe-llama.cpp.

Compatible Engine

This MTP model requires the fork implementation supporting hyper-connection hidden states, QSA Hadamard KV rotation, and MTP layer graph generation:

  • ```

git clone https://github.com/quimmedes/cafe-llama.cpp.git

  • ```

Building from Source

  1. NVIDIA CUDA (Windows / Linux)

CMake configure with CUDA backend

cmake -B build -DGGML_CUDA=ON

Build Release

cmake --build build --config Release -j 2

  1. Vulkan (Cross-Platform AMD / Intel / NVIDIA)

Requires Vulkan SDK installed

cmake -B build -DGGML_VULKAN=ON

cmake --build build --config Release -j 2

  1. AMD ROCm / HIP (Linux / Windows)

cmake -B build -DGGML_HIP=ON -DAMDGPU_TARGETS="gfx1100;gfx1030"

cmake --build build --config Release -j 2

  1. Apple Metal (macOS)

cmake -B build -DGGML_METAL=ON

cmake --build build --config Release -j 2

  1. CPU Only (AVX2 / AVX-512)

cmake -B build -DGGML_CUDA=OFF -DGGML_VULKAN=OFF

cmake --build build --config Release -j 2

-j N : The number of CPU threads the processor will use to compile, a safe number is the amount of physical cores of the processor.

Available Files

  • mtp-Qwen3.8-Flash-Next-Q4_K_M.gguf: Quantized Q4_K_M MTP draft model (~2.65 GB) - Recommended
  • mtp-Qwen3.8-Flash-Next-Q6_K.gguf: Quantized Q6_K MTP draft model (~3.24 GB)
  • mtp-Qwen3.8-Flash-Next-Q8_0.gguf: Quantized Q8_0 MTP draft model (~3.94 GB)
  • mtp-Qwen3.8-Flash-Next-BF16.gguf: Full precision BF16 MTP draft model (~7.40 GB)

Usage with llama.cpp / llama-server

Run llama-server or llama-cli with --spec-type draft-mtp and point -md to your preferred MTP file.

Setting --spec-draft-n-max 2 provides optimal acceptance rate (~50-70%) for a 1-layer MTP draft head:

llama-server   -m Qwen3.8-Flash-Next-UD-IQ3_XXS-00001-of-00003.gguf   -md mtp-Qwen3.8-Flash-Next-Q4_K_M.gguf   --spec-type draft-mtp   --spec-draft-n-max 2   -ngl 999   -hmoe   -fa on   -ctk q8_0 -ctv q8_0 -kvu   -c 8192 -b 1024 -ub 128

CLI Example:

llama-cli   -m Qwen3.8-Flash-Next-UD-IQ3_XXS-00001-of-00003.gguf   -md mtp-Qwen3.8-Flash-Next-Q4_K_M.gguf   --spec-type draft-mtp   --spec-draft-n-max 2   -ngl 999   -hmoe   -fa on   -ctk q8_0 -ctv q8_0   -p "Explain quantum entanglement simply."

Run quimmedes/Qwen3.8-Flash-Next-MTP-GGUF with guIDE

Download guIDE — the AI-native code editor with local LLM inference and 69 built-in tools.

Download guIDE → · Browse 524k+ models · Compare models

Source: Hugging Face · Compare models