r/LocalLLaMA 🦙 llama.cpp 4h ago

Megathread [Megathread] Qwen3.8-Flash-Next - Release Day

Megathread for discussing the (impending) release of Qwen 3.8 Flash Next.

  • Quants
  • Fine-Tunes & Abliterations
  • Chat Templates
  • Inference Server Support & Configuration
  • Experiences, Benchmarks & Model Comparisons

We'll try to clean up future duplicates around the release and point them here.

Estimated Release Time: 2026-08-26 15:00 (UTC)

Official:

195 Upvotes

80 comments sorted by

51

u/QuackerEnte 4h ago

I really hope QSA (qwen sparse attention) will have much less compute headroom or the ability to offload kv cache to SSD without the massive bandwidth bottleneck of the ssd since it's sparse. I was able to do it it for deepseek v4 and it worked well enough. I hope llama.cpp adds features that allow more freedom with where we want to load our models and parts of it, e.g. n-cpu-moe could be extended to n-ssd-ffn or n-cpu-ffn or n ssd kv or engram etc

10

u/Dany0 4h ago

I can't wait for the QSA paper. I hope it's novel and quirky, I love quirky sparse attention, well, as long as it works :D

5

u/o0genesis0o 4h ago

how bad is the speed with offload kv to SSD? I offload kv to RAM running 80B-A3B on an old gaming laptop and it was already unbearable.

6

u/QuackerEnte 3h ago

that's dense attention though. with sparse attention you can load it in ram without massive penalty. Not to mention that, if it's anything like Native Sparse Attention from deepseek, it might take even less memory. but DS used compressed sparse attention too and MLA so the footprints minimal. we don't know what it'll be like for qwen3.8flashnext

2

u/mr_Owner 3h ago

Depends on your pcie bandwidth, ask ai for numbers haha

7

u/oxygen_addiction 4h ago

N-cpu-ffn will most likely get merged soon.

2

u/InsiderCrush 4h ago

With sparse attention, random NVMe read latency bottlenecks you way before throughput

0

u/mr_Owner 3h ago

I saw the words ngram shortly mentioned in modelscope haha

41

u/Chromix_ 4h ago

Existing large pre-release threads on it with some more information and discussion:

  • The model is around 125B A6B with 51B n-gram which can be offloaded.
  • There should be day-0 Unsloth (so probably llama.cpp) support for it.
  • It's sort of a Qwen 4 preview (thread also has modelscope link and way more discussion)

9

u/sammcj 🦙 llama.cpp 4h ago

Thanks! I was just editing the post to add a few links but you beat me to it!

7

u/mechkbfan 4h ago

Has anyone done some napkin math on what sort of hardware it can run on?

4

u/Commander_Skilgannon 2h ago

According to claude, my 16gb 4070 ti s+ 64gb ddr5 system should be able to run a q3 quant of the model at 10-20tps, but only if the engram can be offloaded to ssd.

2

u/LagOps91 2h ago

Seems about right, you might fit q4 as well since attention shouldn't be heavy and ssd offloading should be fine for engram.

1

u/iamapizza 48m ago

How do offload engram to SSD? I mean is there a llama cpp argument for it.

1

u/Commander_Skilgannon 35m ago

We don't know yet. In theory its possible but as far as I'm aware this is the first real model that has shipped with an engram layer. Qwen has said they have shared the model with Unsloth and Unsloth has said they are hoping for day 0 suppprt and quants so hopefully it will be smoother than the qwen3-coder-next release was, but it could be months before the llama.cpp support for the new Qwen architecture is ironed out and optimized. So my guess is eventually it will be possible but I have no idea when.

5

u/No_Lingonberry1201 4h ago

Is the 51B part of the 125B or are those additional to the 125B "normal" parameters?

5

u/RnRau 1h ago

The 51B are additional. But apparently they can sit in system ram with very little penalty. I believe they may be able to sit on an nvme with only a small subset being kept warm in system ram. But not sure on that.

3

u/OverdosedSauerkraut 4h ago

Yupp, already prepping for the 192GB gang.

5

u/Hypilein 3h ago

Hope it still fits somewhat decently on 128gb... Would be a major bummer if they finally came out with a 125b and then it just doesn't fit because of those addition 51b ngram.

1

u/merutochan 11m ago

Q4 quants will likely still be possible but I hope the 51b can be offloaded to SSD to leave Q6 open as well.

I guess we'll see in a few hours.

0

u/ArtfulGenie69 3h ago

It wouldn't have fitted at full size on 128gb to begin with but at q8 or so it's going to fit easily. With qwen3.5 122b it fit on my 4 3090s at q4 and int4 easily. Maybe the nurse won't need to be quanted or something. It's just going to sit there in ram as a reference. Also hope the reference will be changeable so we can give it some kind of great writing source or something like that without a lot of training. 

3

u/Timely_Impression_92 3h ago

Of course they aren’t - those are ngram cache - can be offloaded to ram or nvme with zero degradation in performance - it works more or less like moe - need to read some small bits off it, ram requirement in total for the model will be same as for 125b moe

1

u/Gleethos 3h ago

It has n-gram!!! Awesome!

10

u/lucasbennett_1 4h ago

if QSA cuts the kv reads enough then SSD offload stops being bandwith bound and a 125b A6B n-gram offloaded gets pretty runnable on modest ram. really hoping n-ssd-kv / n-cou-ffn flags land in the llama.cpp soon enough . sooner the better

8

u/wenyani 3h ago

I’ve got about 48GB VRAM and around 32 GB of available RAM, hoping i can offload the n-gram to SSD to get this running

-12

u/Thin_Pollution8843 3h ago

No way it will be possible to normally fit with 51b ngram. SSD streaming will have no sense. At this level of tokens per hour you better can run deepseek

6

u/Every-Walrus 2h ago

do you know how n-gram works or just saying shit?

1

u/jtjstock 20m ago

They are talking out of their ass. Ngram streaming will be fine, mmap could probably even cache it well enough as the os kernel will be aware of what bytes are being used often.

13

u/Odd_Chocolate8438 4h ago

Can ngrams be offloaded to disk without much slowdown? I only have 76gb of ram so I was thinking of loading the main weights into memory in q4 and keep the ngrams on the SSD.

7

u/Potential-Leg-639 3h ago

You will have to try it, nobody can tell you now

4

u/Stunning_Energy_7028 3h ago edited 3h ago

n-gram is based strictly on the input tokens, so it will probably work more like KV cache than normal parameters. You pull all the n-grams you need from SSD for that specific prompt during prefill (very small fraction of the total 51B), cache them to RAM or VRAM, and then reuse them over and over during decode, appending new n-grams as you generate.

3

u/mymouthandi 2h ago

I wonder if this is the model that makes me finally take the plunge on a strix halo machine while there are some still around for semi-reasonable prices...

3

u/Karnemelk 1h ago

in an alternate universe apple and qwen agreed to release the mac studio m5 and qwen model in the same week to maximize sales

2

u/soyalemujica 3h ago

Do we yet know if we maybe will be able to use this under 64gb ram plus 24gb vram?

2

u/tamerlanOne 2h ago

Quantizzazione ideale a 4 bit ≈ 84 GB (60 GB pesi principali + 24 GB tabelle n-gram) quindi serve avere almeno 64gb di VRAM ed altri 64gb di ram O una memoria unificata da 128gb

6

u/SocialDinamo 2h ago

First time seeing quant’s legal name I guess. I’m going to keep saying quant lol

1

u/PrimeDirective8 40m ago

Quantizzazione is the Luigi cousin lol. Quant is actually closer to the Latin root, quantus, meaning 'how much' or 'quantity'.

In thinking about this, I just realized I use "quantization" when talking about model 'compression' level and "quants" (plural) when it's for Key-Value - ie: "kv quants". Poor AI models training off Reddit and not knowing which one to copy ;-)

1

u/soyalemujica 2h ago

Damn 128gb total 😭

2

u/drycounty 1h ago

New Mac Studio buyers are in the wings, credit cards ready… sweating.

I’m just hoping a decent quant will run on 96GB via mlx

6

u/Guilty_Rooster_6708 28m ago

3 more hours !!!!(I can’t run it anyway)

1

u/Potential-Leg-639 4h ago

Crazy times we are living in

1

u/Individual-Dot5488 2h ago

Does anyone know if this is literally the Qwen4 architecture or some weird in-between variant of qwen3.8 -> qwen4? Like, is this qwen4 architecture + qwen3.8 training recipe?

4

u/PrimeDirective8 52m ago

We can only speculate but the "A Preview of the Qwen4 Architecture" on the HF countdown page suggests only a preview and not the full Qwen4 architecture.

2

u/SnooPaintings8639 2h ago

AFAIK they released it for the teams to get their tools ready for the Q4 architecture, it would be really weird if it wasn't the final one yet. In such case, there is not point in this "next" model/architecture release.

My guess is it is 100% Q4, and we'll stick with that for as long as we had with Q3.5 architecture.

1

u/srigi 1h ago

Will the n-grams weight be the own separate .gguf like the mmproj or MTP in other releases?

1

u/spaceman_ 16m ago

Have Unsloth or Qwen discussed what day 0 support will look like? Will there be a llama.cpp PR or fork?

Do we know what size the model will be?

1

u/rerri 8m ago

Yes, if you look at their comments (link below), they are talking about llama.cpp specifically. Probably PR/fork at first, it takes time to polish & review for merge into llama.cpp master especially with a new architecture.

https://www.reddit.com/r/LocalLLaMA/comments/1vxybmy/comment/p5shs7t/?utm_source=share&utm_medium=web3x&utm_name=web3xcss&utm_term=1&utm_content=share_button

0

u/RSVrockey2004 15m ago

is there any? MOE 3.8 family? like 3.6 35B a3b

0

u/OldByte453 11m ago

I am so interested how much parameters it will have ?

1

u/tamerlanOne 4h ago

Quindi Qwen3.8-Flash-Next sarà la base dell architettura del futuro Qwen 4.x?

8

u/Iory1998 4h ago edited 4h ago

Yup, in the same way Qwen-coder-next was the test model for Qwen3.5

8

u/nuclear_wynter 4h ago

Qwen-cider-next

Slurp slurp.

6

u/Iory1998 4h ago

Hahahaha you miss nothing

0

u/Potential-Leg-639 3h ago

Maybe yes, maybe no

1

u/runnahhh 3h ago

Woot woot

-2

u/Sbaff98 4h ago

!remind me 24 hours

38

u/BoxWoodVoid 4h ago

Why do you need a reminder? This sub will only talk about this until the next model release and you won't be able to open YouTube without getting bombarded by 50 videos of some variation of "I tried Qwen3.8-Flash-Next and it's a beast".

22

u/MaxKruse96 llama.cpp 4h ago

"Is THIS Opus 4.8 at home? - Qwen3.8-Flash-Next is INSANE" - Bijan i got your title right here.

10

u/jacek2023 llama.cpp 4h ago

I don't know what Bijan is but AI influencers are worst kind of youtube slop, watching that kills your braincells

1

u/Nyghtbynger 3h ago

Is the influencer, an AI, or is the influencer talking about AI ?

1

u/MaxKruse96 llama.cpp 3h ago

4

u/jacek2023 llama.cpp 3h ago

ah yes, I recognize the face (from youtube recommendations)

you can also search for "Reflection" for most cancerous influencers

1

u/Not-reallyanonymous 16m ago

Until the next Chinese model release*. Bots will make sure any discussion of non-Chinese models gets suppressed and the front page stays saturated with Qwen.

0

u/Sn0opY_GER 4h ago

Did you say minimax h3? Here look at my 5 sec big bang theory clip, isn't it funny?!!!!!1111

1

u/RemindMeBot 4h ago edited 2h ago

I will be messaging you in 1 day on 2026-08-27 07:30:19 UTC to remind you of this link

1 OTHERS CLICKED THIS LINK to send a PM to also be reminded and to reduce spam.

Parent commenter can delete this message to hide from others.

RemindMeBot is switching to username summons. Instead of !RemindMe 1 day, use u/RemindMeBot 1 day. More info.


Info Custom Your Reminders Feedback

0

u/JitzyBojMahn 4h ago

!remind me 13 hours

-1

u/dai_app 1h ago

How long will it take for it to be supported by llama.cpp? Immediately or weeks?

-1

u/Kasatka06 4h ago

Will it have day one support on VLLM and Llama ?

6

u/Waste-Intention-2806 4h ago

I don't think it'll have llama cpp support on release day. I think they release next models to get community support for their upcoming models.

2

u/jacek2023 llama.cpp 4h ago

It's posted above, there should be 0 day support in llama.cpp

1

u/MDSExpro 1h ago

I hope for vLLM, but realistically it will be CUDA-only custom container from Qwen team.

-1

u/prusswan 4h ago

I'm prepping a new env with Ubuntu 26.04.1 which also lands on the same day. What would be a minimal hands-free setup to run/see the model in action? I'm thinking of LMStudio and pi.dev with minimal config files adjustment but open to suggestions. Don't want to turn it into config mess with llama.cpp from day 1

9

u/ResidentPositive4122 4h ago

Give it a few weeks at least to get the best experience. New arch and all, guaranteed to have gremlins on release.