Hacker News

New stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. Why Red Hat Dropped Btrfs and Standardized on XFS in RHEL (pbxscience.com)
    1comments
  2. I woke up to see 580 CVE's in 16 deployments (farshid.co.uk)
    —discuss
  3. Screw Is Needed for Missiles and Planes. Buying One Can Take Years (nytimes.com)
    1comments
  4. What do you do now as a software engineer?
    1comments
  5. Fast poker hand evaluation via hardware synthesis and bitslicing (roderickgreen.com)
    1comments
  6. Credence – Jev-style typed decisions from a local GGUF model (github.com/bulyaki)
    —discuss
  7. The history of Big Tech (it's darker that you think) (youtube.com)
    —discuss
  8. Practical lessons on building software with LLMs and automated governance (banes-lab.com)
    —discuss
  9. ShinyHunters hackers say they stole psychiatric and medical records of FBI staff (reuters.com)
    —discuss
  10. "can't a guy walk down the street anymore without being harassed by AI" [video] (bsky.app/cabel.panic.com)
    —discuss
  11. Show HN: Detailed Guide to Agent Memory (cognee.ai)
    —discuss
  12. What reversing, modernising old games tells us about the economic impact of AI (isfine.org)
    1comments
  13. Claude Deleted 48k Files (archive.org)
    4comments
  14. 344,799 Bible cross-references (trekhleb.dev)
    —discuss
  15. Universe, Drawn in ASCII (gcdatlas.vercel.app)
    1comments
  16. First ever 3D animation (40 year old 3D computer graphics Pixar 1972) (youtube.com)
    —discuss
  17. Things You Notice Rewatching Ed, Edd N Eddy as an Adult (noxluneworld.com)
    —discuss
  18. If Frank Lloyd Wright's Falling Water Was a Tree House (2012) (weburbanist.com)
    1comments
  19. Top AI companies probing security incidents (axios.com)
    —discuss
  20. react-html-3.2 (jkosoy.github.io)
    2comments
  21. Laser Weapons Will Be Deployed at Cape Canaveral Spaceport to Take Down Drones (twz.com)
    —discuss
  22. Interpolating Between Neural Networks (flx.ai)
    —discuss
  23. Allegations of sexual harassment and rape at Bay Area AI party houses (kron4.com)
    —discuss
  24. The Duo. No, the Other Duo (morrick.me)
    —discuss
  25. Ask HN: Any books, list of papers, or articles to understand LLM's
    —discuss
  26. BubbleRumble: The new social for crypto by Jae Kwon (bubblerumble.net)
    2comments
  27. Show HN: Newt – A Swift Package for Jev-Style Decisions on Apple Core AI (github.com/willswire)
    —discuss
  28. Vibe coding a real product: a 3D game on the App Store, 20 species, zero revenue (apps.apple.com)
    —discuss
  29. An Underappreciated Problem with Dating Apps (theatlantic.com)
    —discuss
  30. Donald Trump Hit with 26 Articles of Impeachment (newsweek.com)
    1comments

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

5 pointsby 1h 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?

18m 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/