Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. PostgreSQL and the Linux OOM Killer: A Better Default (clickhouse.com)
    —discuss
  2. OpenAI agents tried to bruteforce a UN website's API fields (swarmcha.se)
    —discuss
  3. SpaceX Pivots Away from Space (ft.com)
    —discuss
  4. Insurers claim AI is increasing healthcare costs (techcrunch.com)
    —discuss
  5. Real-Time Feedback: My Closing Move in Every Interview (mgrebler.substack.com)
    —discuss
  6. Play Diplomacy against AIs like Claude or GPT: they betray, scheme, etc. (twitter.com/olam_labs)
    —discuss
  7. Privacy-First Natural Language to SQL, No LLMs, No Uploads (clientvirt.com)
    —discuss
  8. Trump administration Plans to Gut Clean Car Rules (nytimes.com)
    —discuss
  9. What if you removed every electron from 1kg of metal? (youtube.com)
    —discuss
  10. The AI Doomsday Future Is Not Inevitable (theintercept.com)
    —discuss
  11. LLM Policies: Progress at All Costs (diegoe.be)
    —discuss
  12. Show HN: Translate Like Me, a Mac menu bar translator that keeps your voice (github.com/wiltodelta)
    —discuss
  13. His Novel Had a Shot at a Top Book Prize. Then Someone Ran an A.I. Test. (nytimes.com)
    1comments
  14. OpenAI (2015) (openai.com)
    —discuss
  15. Speech-to-Text Accuracy in 2026: Open-Weight vs. Cloud (verli.app)
    1comments
  16. Show HN: Cantala – a free Mexican lotería caller with recorded voices (cantala.net)
    —discuss
  17. Geely's AI fast charging 'heals' EV batteries for 20% more cycle life (electrek.co)
    —discuss
  18. Marginalia Search (marginalia-search.com)
    —discuss
  19. Utilizing Enzymes to Help Treat Tuberculosis (caltech.edu)
    —discuss
  20. Sousveillance (wikipedia.org)
    —discuss
  21. Agentic Hacker News (hackernews-agentic.pages.dev)
    —discuss
  22. Why Red Hat Dropped Btrfs and Standardized on XFS in RHEL (pbxscience.com)
    1comments
  23. I woke up to see 580 CVE's in 16 deployments (farshid.co.uk)
    —discuss
  24. Screw Is Needed for Missiles and Planes. Buying One Can Take Years (nytimes.com)
    2comments
  25. What do you do now as a software engineer?
    4comments
  26. Fast poker hand evaluation via hardware synthesis and bitslicing (roderickgreen.com)
    1comments
  27. Credence – Jev-style typed decisions from a local GGUF model (github.com/bulyaki)
    —discuss
  28. The history of Big Tech (it's darker that you think) (youtube.com)
    —discuss
  29. Practical lessons on building software with LLMs and automated governance (banes-lab.com)
    —discuss
  30. ShinyHunters hackers say they stole psychiatric and medical records of FBI staff (reuters.com)
    —discuss

>1B tokens/minute/GPU by combining query planner and inference engine

7 pointsby 2h agomodal.com
2 comments
1h agoHN ↗

First of all, this is VERY impressive. I wonder how this might effect the output quality. I wrote my own AI execution engines in the past and from that I can tell that it is really hard to get right and event small mistakes can make the model way dumber than expected.

While qwen3-4b is smarter than I remembered it, newer models seem to be way better, K2 Horizon 3.7B for example. Is there a reason why that qwen model was choosen?

My last question would be if the same optimizations could be made to a Jev-like model. I mean Jev is already fast and probably has a high throughput per H100. So could we maybe get to >2B tokens/minute/GPU with such a model?

1h agoHN ↗

Thanks!

We chose the Qwen model for the initial and core results because it's a simple architecture, which made the roofline cost modeling very easy and trustworthy. I'd already done related work with that model before for another project on speculative decoding, so we had a reference impl as well.

For brevity, this post focuses on a subset of the results. In the companion post on the Full Stack Data Lab blog[1], we go into more detail. With any luck, that'll be a nice VLDB-bound arXiV paper soon!

We have some more results on DiffusionGemma that we tacked on after Jev started popping off. Hard to say much about the specific Jev model, since the details are not known -- even to me, working with their team as they scale up on our platform.

But generally, I think a Quail-like query planner-based approach is a slam dunk for this broad set of classifier models. Quite likely that the benefit is primarily for backend/analytics queries though, where the superior KV management has a chance to shine.

2B tokens/minute/H100 happens to be roughly the speed of light for Qwen 4B. Probably unattainable, for the reasons we indicated (and others, e.g. manufacturer overstatement of peak rates), but I wouldn't be surprised if we could squeeze another 20-30% with CUDA PDL or a megakernel.

[1] https://fsdatalab.github.io/blog/introducing-quail/