DeepSeek V4 Flash: Phase-Adaptive Speculative Decoding Arrives on Consumer GPUs

Published on

Today's AI news: DeepSeek V4 Flash: Phase-Adaptive Speculative Decoding Arrives on Consumer GPUs, The Open-Weight Model Race: Ternary Dreams and Qwen's Next Move, AI Security: From Spectral Attacks to Structural Defenses, When Safety Filters Attack Their Own Users, Agent Tooling: Browser Agents, Clearer Writing, and the Token Bill, OpenAI's DOJ Settlement and the Vulnerability Management Reckoning. 22 sources curated from across the web.

DeepSeek V4 Flash: Phase-Adaptive Speculative Decoding Arrives on Consumer GPUs

DSpark speculative decoding already doubled throughput for DeepSeek V4 Flash on multi-GPU rigs. The interesting question was always whether someone would make it smart enough to adapt to what the model is actually doing. That someone turned out to be a single developer running an RTX 5090 with 256 GB of system RAM, and the answer is phase-adaptive K with dual CUDA graphs. The core insight: during hard reasoning, the second speculative draft position gets accepted roughly 30-50% of the time, making it a net drag. During predictable code or text output, acceptance jumps to 80-90%, making depth-2 drafting a clear win. The patch detects the </think> token in generated output, switches from K=1 to K=2, and -- critically -- keeps both CUDA graph shapes pre-captured so neither phase falls back to eager execution. Measured across a 20-minute agentic coding session: 13.8 tok/s mean during reasoning, 17.0 tok/s during content generation, with the full 1M-token context preserved on 15.9 GiB of model allocation. An update validated the approach through 500,000 tokens of context with a workaround for a separate SM120 Triton MQA kernel bug that crashed on long-KV prefills above 16K entries. (more: https://old.reddit.com/r/LocalLLaMA/comments/1vfnw6a/update_deepseekv4flash0731_on_a_single_rtx_5090/)

The practical gain over fixed-K configurations is mid-single-digit percent on reasoning-heavy workloads -- not a miracle, but the developer no longer has to pick a single compromise speculative depth for the entire completion. Meanwhile, TensorSharp shipped its own DSpark implementation for the same model on 4x NVIDIA A40s, measuring 1.5x to 2x speedups depending on workload: a 10K-token document query jumped from 25.3 to 51.3 tok/s with 85% draft acceptance, while longer generations settled around 1.53x. (more: https://old.reddit.com/r/LocalLLaMA/comments/1vdpe1k/dspark_benchmark_result_on_deepseek_v4_flash_0731/)

For people without multi-GPU setups or bleeding-edge 5090s, a detailed configuration report on a single RTX 4090 with 128 GB DDR5 establishes the floor: 12-13 tok/s generation at 64K context using the UD-Q3_K_M quant, with prompt processing at 212-224 tok/s for 8K-32K inputs. The critical finding is that 128 GB of system RAM is a hard requirement, not headroom -- the model loaded and serving consumed 103 GB resident. The author noted that agentic workloads spent 81-86% of wall time on prompt reprocessing, meaning the first token after a long context can take two and a half minutes. (more: https://old.reddit.com/r/LocalLLaMA/comments/1vflici/deepseek_v4_flash_udq3_k_m_on_a_single_rtx_4090/) An agentic coding benchmark pitting V4 Flash against Qwen3.6-27B, Qwen3.5-122B, and Gemma 4 31B on an M5 Max confirmed that even heavily quantized V4 Flash remains the smartest model people can run locally on 128 GB, though it outspent the next-best 122B model by over 5x in tokens to get there -- and the Qwen models solved substantially more cases on their first attempt. (more: https://old.reddit.com/r/LocalLLaMA/comments/1vfhqkm/deepseek_v4_flash_vs_qwen3627b_35122b_and_gemma_4/)

The Open-Weight Model Race: Ternary Dreams and Qwen's Next Move

DeepGrove, a startup focused on natively trained low-precision architectures, dropped Maple-Preview: a 20-billion-parameter, 1-billion-active ternary-weight reasoning MoE that runs at 120+ tok/s on an iPhone and 200+ tok/s on a Mac mini M4. The claim that distinguishes it from post-training quantization approaches like PrismML's Bonsai is that Maple was trained from scratch in ternary precision, with architecture decisions made in a hardware-aware design loop testing configurations directly on Apple Silicon for inference speed. At ternary weights, matrix multiplication effectively reduces to additions, cutting both memory and arithmetic requirements. The benchmarks are competitive with larger models -- the team claims IMO-level problem solving -- though the release explicitly notes minimal post-training for agentic domains and only small-scale reinforcement learning, so the practical ceiling remains unclear. (more: https://deepgrove.ai/maple-preview)

The more provocative feature is on-device adaptation through what DeepGrove calls "dreaming." In a demo, the model encounters a user's vegan dietary preference during a recipe conversation, generates a small synthetic dataset overnight, fine-tunes itself, and the next day correctly recommends synthetic leather bags instead of real leather -- a generalization that Claude Sonnet 5 with memory enabled reportedly failed to make. The dreaming process takes 10-20 minutes with 5.9 GB peak memory. Whether this scales beyond curated demos is an open question, but the thesis -- that always-active on-device assistants should adapt their weights rather than accumulate context files -- is directionally interesting.

Qwen's developers held a Twitter AMA confirming that Qwen 3.8-27B is imminent, with 2.4 trillion total parameters and 95 billion active. The architecture is "similar to 3.5 but much larger-scale," and the team described the capability jump from 3.6-27B as "pretty huge" -- twice. They confirmed 3.8 supports different reasoning effort levels, addressing a known complaint about excessive token consumption in thinking mode. On quantization, they recommended QAT or quantizing only FFN layers to 4-bit while keeping attention QKV projections in 16-bit. The AMA was notably evasive on smaller models, 70B variants, and the 122B segment, deflecting with variations of "collecting everyone's requests." Community reaction to the AMA was split between gratitude for any engagement and frustration at the ratio of substantive answers to corporate hedging. (more: https://old.reddit.com/r/LocalLLaMA/comments/1vg569y/qwen_developers_responses_from_their_recent/)

AI9Stars, a group affiliated with Tsinghua University, released G9v3-39A5B under Apache 2.0 -- a 39-billion-parameter MoE with 5 billion active experts targeting coding, tool use, and reasoning. Benchmark comparisons on Artificial Analysis put it roughly on par with Qwen 3.6-35B-A3B despite having both larger total and active parameter counts, suggesting the full release after post-training may be where it gets interesting. (more: https://old.reddit.com/r/LocalLLaMA/comments/1ve9eo3/ai9stars_released_g9v339a5b/) Unsloth published detailed documentation for running Kimi K3, Moonshot AI's 2.8-trillion-parameter model (104B active), in quantized form via llama.cpp, reporting that their dynamic 1-bit quant at 553 GB reaches 79% top-1 accuracy with 2.58 perplexity -- while a competing community quant at 619 GB delivered 54.56 perplexity, 21x worse. The practical takeaway: quantization method matters enormously at this scale, and naive approaches destroy the model. (more: https://unsloth.ai/docs/models/kimi-k3) Separately, tests of GLM-5.2 on synthetic lethal gene identification in cancer data showed clear performance gains scaling with parameter count, though the researcher noted uncertainty about whether this reflects better reasoning or simply more memorized biological knowledge from training data. (more: https://www.linkedin.com/posts/agpphd_ive-conducted-a-series-of-tests-with-the-activity-7490677656775094272-lh_n)

AI Security: From Spectral Attacks to Structural Defenses

A research team at University of the Bundeswehr Munich identified a previously overlooked attack surface in vision-language models: the bottom singular-vector subspaces of intermediate linear transformations. Their Spectral Subspace Guided Representation Attack (SSGRA) aligns adversarial intermediate representations with these information-attenuating subspaces, where near-null singular values cause the strongest signal degradation. Tested against Gemma-3 (4B), Qwen2.5-VL (7B), and LLaVA-1.5 (7B), SSGRA consistently outperformed six existing baselines including feature-discrepancy and entropy-guided attacks. The telling structural finding: across all three models, near-null singular directions occurred far more frequently than strongly amplifying ones -- in Qwen2.5-VL, singular values below 0.01 appeared in a large fraction of operators, while values above 10 were nearly absent. This spectral imbalance creates a large attack surface that untargeted adversarial optimization naturally exploits even without explicit spectral guidance. The practical implication is that spectral-norm regularization of large singular values, the standard defense, addresses only half the problem; controlling near-null directions may be equally important. (more: https://arxiv.org/abs/2607.07375v1)

On the defense side, Tantalus.io, built by Vince Ovando, launched a free prompt injection arena that makes the structural argument visceral. Round 1 gives attackers the full exploit playbook -- poisoned marketplace skills, phishing emails, exposed credentials -- against every behavioral defense the industry sells: defensive system prompts, input classifiers, output filters. All bypassable. Round 2 removes every behavioral defense, rewrites the system prompt to demand unconditional compliance, and adds one structural control: grammar-constrained decoding that restricts tool-call parameters at the token generation level. If the URL enum does not contain the attacker's domain, the model physically cannot generate it. The same attacks that succeeded in Round 1 die in Round 2 despite the agent being explicitly instructed to be malicious. The analogy to parameterized queries versus SQL injection is apt -- this is not a filter to bypass but a constraint on the output space itself. One caveat already surfacing in early red-teaming: the grammar constrains what the agent can DO, not what it can SAY -- free-text responses can still carry secrets, a gap the authors themselves scope to a follow-up paper. (more: https://tantalus.io)

Mistral released Shieldstral, a 3-billion-parameter open-weights multimodal safety classifier under Apache 2.0 that takes a different approach to content moderation. Instead of baking a fixed harm taxonomy into the weights, Shieldstral treats moderation as natural language inference: you write the safety policy as a plain-language question at inference time, and the model returns a calibrated probability from a single forward pass. This means one checkpoint adapts to novel policies without retraining -- the same content can be classified differently for a cybersecurity research tool versus a children's platform. Shieldstral matches or outperforms models up to 7x its size on text safety benchmarks and sets a new state of the art on multimodal moderation, running on a single 16 GB GPU. (more: https://mistral.ai/news/shieldstral/) The agent containment debate continued with a piece arguing that sandboxes solve process isolation but not the full agent governance problem -- identity, memory, tools, policies, mutations, provenance, and future versions all travel outside the sandbox boundary. (more: https://www.linkedin.com/posts/reuvencohen_the-biggest-mistake-in-agent-security-is-activity-7490757421754175489-VCrJ) And a Go-based tool called Conversation Steganography demonstrated hiding encrypted messages inside normal-looking LLM-generated chat text, using AES-SIV encryption with token-choice encoding so the cover text is generated by a local model and the messaging platform never sees the plaintext. The security model requires both parties to use the same local model and process messages in exact order -- fragile, but the proof of concept illustrates that LLM output is now a viable steganographic channel, one that content scanners are not designed to detect. (more: https://github.com/nethical6/conversation-steganography)

When Safety Filters Attack Their Own Users

The pattern of safety classifiers blocking the exact work they are supposed to enable has now hit both major frontier vendors. A Codex user ran OpenAI's Codex Security feature on their repository for the first time. It worked for nearly 20 minutes, consumed 11% of the weekly usage limit, and then returned "Goal blocked, This content can't be shown." No results, no partial output, no way to see the thinking process up to the block point. The community response was predictable: "Classic. Classifier kicks in mid-run, eats your compute, gives you nothing back." Others noted that asking the model "why are we blocked" sometimes causes it to continue, suggesting the block is classifier noise rather than a genuine safety boundary. The deeper problem is economic: a security analysis tool that burns significant quota before deciding its own output is too dangerous to show creates a perverse incentive to avoid using it on anything that might trigger a false positive -- which is precisely the kind of code that needs security review. (more: https://old.reddit.com/r/OpenAI/comments/1vaeblu/codex_security_this_content_cant_be_shown/)

Anthropic's Fable continues to accumulate complaints from researchers who find the model unusable for legitimate science. A scientist working outside any of the high-risk domains -- not frontier AI, not cybersecurity, not biology -- reported that Fable "essentially non-existent" due to constant refusals and flags, leading them to switch to Sol. The frustration is sharpened by Anthropic's stated mission to accelerate science while shipping a model that, in practice, routes bioinformatics researchers to a fallback model before they can even ask about the weather. Multiple commenters reported the same experience: buying Pro subscriptions specifically to try Fable, finding it redirects everything, and concluding it is not worth the prompt engineering required to work around the classifier. The suggestion that researchers from credentialed institutions should receive differentiated access is reasonable but appears nowhere on Anthropic's roadmap. One commenter's assessment -- that Anthropic is "on course to become the Yahoo! of AI" -- is harsh but captures the gap between the mission statement and the user experience for exactly the audience the mission claims to serve. (more: https://old.reddit.com/r/Anthropic/comments/1vd56lh/as_a_scientist_fable_is_not_usable/)

Agent Tooling: Browser Agents, Clearer Writing, and the Token Bill

NEURA for Browser ships a Chrome/Firefox extension that turns Open WebUI into an agent that lives in every browser tab. The sidebar connects to your existing Open WebUI instance -- your models, chat history, knowledge collections -- and reads the current page's content without copy-paste. The more interesting capability is agent mode: the model gets a real toolset against the active tab including DOM snapshots, element clicking, form filling with proper framework event dispatch, key presses, scrolling, waiting for selectors, and screenshots. Every tool call shows as a live chip in the chat so you can see what the agent is doing and kill it mid-task. Navigation that would leave the current origin stops and asks for confirmation; javascript: and chrome: schemes are blocked outright. The developer is refreshingly honest about the state of the release -- "This is a first release and I know it. There are bugs." -- which is more useful than a polished launch blog hiding the same rough edges. (more: https://old.reddit.com/r/OpenWebUI/comments/1vg35s0/open_webui_now_living_in_every_browser_tab/)

On the writing side, SimpleEnglish is an agent skill that forces LLMs to write in ASD-STE100 Simplified Technical English, the controlled language aerospace has used since 1983 to prevent ambiguity in maintenance manuals. The rules -- max 20 words per instruction, one word equals one meaning, active voice only, no should/would/may/might, condition before command -- happen to be a near-perfect negative of every AI writing tell. Measured across 96 runs on 6 Claude models, the skill reduced STE violations by 72.9% per 100 words while also reducing output token count. The before/after examples are striking: "Leveraging sqlpipe's robust architecture, users can seamlessly synchronize..." becomes "sqlpipe copies your Postgres tables to S3. It needs one configuration file." (more: https://github.com/AminBlg/SimpleEnglish) For teams trying to understand where their AI budget actually goes, a curated reference called Awesome AI Tokenomics aggregates roughly 200 entries across monitoring dashboards, caching tools, compression libraries, routing frameworks, and academic papers on token economics -- organized not by hype but by function, with license badges and one-line summaries. (more: https://github.com/QuesmaOrg/awesome-ai-tokenomics) A YouTube walkthrough of the Hermes agent framework addressed the five most common community questions, emphasizing that Hermes itself is lightweight on tokens -- a report of burning 50 million tokens in an hour likely reflected a retry loop rather than normal operation -- and that the framework's value is portability: workflows, skills, and self-improvement configurations move with you when you swap underlying models. (more: https://www.youtube.com/watch?v=7HqUxGZOmLk)

OpenAI's DOJ Settlement and the Vulnerability Management Reckoning

OpenAI settled with the Department of Justice for $3.2 million over allegations that it discriminated against U.S. workers during the PERM (Permanent Labor Certification) hiring process. The DOJ's investigation found that OpenAI failed to publicly post PERM positions on its careers website, required paper applications instead of electronic submissions, and used recruiting practices that discouraged U.S. applicants -- including late-night radio advertisements. Under the settlement, OpenAI will pay $1.2 million in civil penalties and establish a $2 million back-pay fund. The company pushed back on the findings while agreeing to resolve the matter, stating that "maintaining America's leadership in AI requires attracting and retaining the best talent from the United States and around the world." The settlement is notable less for its size than for its timing: it arrives while OpenAI is simultaneously promoting the $500 billion Stargate infrastructure project and a pledge to certify 10 million Americans in AI skills by 2030. Federal officials noted that fewer than 10 PERM positions were involved, but the settlement amount reflects "the impact of excluding U.S. workers from high-paying technology positions." This marks the 13th settlement under the DOJ's Protecting U.S. Workers Initiative launched in 2025. (more: https://dailycaller.com/2026/08/04/openai-american-jobs-boom-while-discrimination-us-workers-doj-harmeet-dhillon-sam-altman)

In a different corner of the industry, Robert Hansen and Jeremiah Grossman published "The End of Guessing," a book arguing that vulnerability management and external attack surface management have both failed their core promises. The thesis: VM scanners are littered with ancient vulnerabilities that never mattered, theoretical CVE issues, and minor information leaks, driving per-scan costs up while customers choose to scan only a fraction of their attack surface. EASM tools, meanwhile, were built to produce asset lists, not to be asset maps themselves -- a distinction that matters because the average customer does not know what a complete inventory looks like. The authors claim to have figured out how to fix both problems using evidence-based prioritization rather than CVSS severity scores, building on the actuarial insight that 49% of CVEs rated high or critical have less than a 1% chance of exploitation in any given month. For anyone attending Black Hat, signed copies are available at the Root Evidence booth on Wednesday and Thursday. (more: https://www.linkedin.com/pulse/story-behind-end-guessing-rootevidence-uipwc)

Sources (22 articles)

  1. [Update] DeepSeek-V4-Flash-0731 on a single RTX 5090: phase-adaptive DSpark K1/K2 with dual CUDA graphs (old.reddit.com)
  2. TensorSharp DSpark Benchmark on DeepSeek V4 Flash — up to 2x speedup (old.reddit.com)
  3. DeepSeek V4 Flash on a single RTX 4090 at 64k context — complete config and measured numbers (old.reddit.com)
  4. DeepSeek v4 Flash vs. Qwen3.6-27B, 3.5-122B, and Gemma 4 31B — Local Agentic Coding Benchmark (old.reddit.com)
  5. Maple-Preview — Ternary 20B MoE running at 120 tok/s on an iPhone (deepgrove.ai)
  6. Qwen Developers' AMA: 3.8-27B coming soon, 2.4T params (95B active) (old.reddit.com)
  7. AI9Stars released G9v3-39A5B — Apache 2.0, 39B/5B active MoE (old.reddit.com)
  8. [Editorial] Unsloth Kimi K3 Model Documentation (unsloth.ai)
  9. [Editorial] Series of Model Tests and Results (linkedin.com)
  10. Adversarial Vulnerability of Vision-Language Models via Intermediate Spectral Subspaces (arxiv.org)
  11. [Editorial] Tantalus.io (tantalus.io)
  12. Mistral's Shieldstral: 3B open-weights model for multimodal moderation (mistral.ai)
  13. [Editorial] The Biggest Mistake in Agent Security (linkedin.com)
  14. Conversation Steganography — Hide messages inside normal-looking LLM conversations (github.com)
  15. Codex Security blocks its own security analysis after burning 11% of weekly limit (old.reddit.com)
  16. As a scientist, Fable is not usable — Anthropic's safety filters block legitimate research (old.reddit.com)
  17. NEURA for Browser — Open WebUI agent mode in every browser tab (old.reddit.com)
  18. SimpleEnglish — Agent skill for ASD-STE100 Simplified Technical English (github.com)
  19. [Editorial] Awesome AI Tokenomics — Curated AI Cost & Pricing Reference (github.com)
  20. [Editorial] YouTube: AI Technical Content (youtube.com)
  21. [Editorial] OpenAI, American Jobs, and DOJ Discrimination Investigation (dailycaller.com)
  22. [Editorial] The Story Behind the End of Guessing — RootEvidence (linkedin.com)