Top stories

Live mirror
30 storiesupdated 0s agoView source snapshot
  1. Introducing System One Models and Jev(typesafe.ai ↗)
    177comments
  2. Show HN: An e-ink frame that hears birds and draws them as 1800s illustrations(github.com/arnegiacomo ↗)
    158comments
  3. German Rheinmetall open-sources its Battlesuite connected weapon system protcol(rheinmetall.github.io ↗)
    12comments
  4. An Update on Wayback Machine Access(blog.archive.org ↗)
    160comments
  5. Jean-Pierre Serre is 100 years old today(st-andrews.ac.uk ↗)
    9comments
  6. Gemini 3.8 Live and 3.8 Live Extended Thinking(blog.google ↗)
    152comments
  7. We got admin access to Baseten's production GitHub in 25 minutes(strix.ai ↗)
    86comments
  8. Building a Linux GPU Driver for the M4 Mac Mini in One Month(codyho.dev ↗)
    30comments
  9. Chopping up books when they're physically too big(mattkirkland.com ↗)
    79comments
  10. WangNet – 1.8 MB, zero-dependency Numberwang adjudication in 11 languages(github.com/graafhenk ↗)
    29comments
  11. I can't stop thinking about Papua New Guinea(notnottalmud.substack.com ↗)
    405comments
  12. Show HN: Capsule – Single-file web apps that save their data into SQLite(withcapsule.app ↗)
    112comments
  13. Data races and the limits of ThreadSanitizer in C and Go(theconsensus.dev ↗)
    1comments
  14. GEFS on OpenBSD: A Early Preview(marc.info ↗)
    49comments
  15. Vibe Coding is the new Internet Dating?(joecmarshall.com ↗)
    29comments
  16. Learning to solve hard problems in RL for LLMs by never giving up(mnoukhov.github.io ↗)
    discuss
  17. Jiga (YC W21) Is Hiring Product Engineer (Remote/US)(jiga.io ↗)
    discuss
  18. Let's make quality the norm again(forbrukerradet.no ↗)
    277comments
  19. The CSS Zen Garden dream, finally shipped(josprague.com ↗)
    53comments
  20. Suspected sabotage causes major Netherlands rail disruption(bbc.com ↗)
    376comments
  21. Show HN: Pizza Bot – An inbox for AI agents that work in the background(github.com/pizza-bot-app ↗)
    2comments
  22. Cartesian – AI 3D Modeling for Design(formas.ai ↗)
    66comments
  23. Why I'm still bearish on LLMs after Navier-Stokes(dank.systems ↗)
    1comments
  24. Show HN: Hacking a $20 4G wireless hotspot into a texting device(bkovac.github.io ↗)
    30comments
  25. A single firm is behind OpenAI, Anthropic, and Meta hacking scandals(effort.news ↗)
    132comments
  26. The Inference Hardware Revolution of 2026(ieee.org ↗)
    9comments
  27. Most people prefer traditional architecture(worksinprogress.news ↗)
    181comments
  28. US confirms for first time it has deployed space weapons(bbc.com ↗)
    287comments
  29. Giving up on smart rings(notesbylex.com ↗)
    129comments
  30. 25 years of mass surveillance is enough(schneier.com ↗)
    267comments

The Inference Hardware Revolution of 2026

88 pointsby 8h agospectrum.ieee.org
9 comments
4h agoHN ↗

Excellent article. I believe the majority of benchmark performance gains moving forward will come from this side of the stack enabling faster iteration/recursion.

4h agoHN ↗

And Anthropic is paying LLM competitor SpaceXAI over a billion dollars per month to lease spare compute

I knew of this but not the $ amount. Wow

4h agoHN ↗

Big money from taking Tesla's place in line for an Nvidia shipment during a huge shortage without compensation.

3h agoHN ↗

Great read.

I like how the author uses the analogy of scrabble word creation to describe LLM training but unfortunately the analogy didn't continue to inference and I got lost trying to keep up.

1h agoHN ↗

The analogy is flawed - in Scrabble you get rewarded for unlikely word combos. Also causal attention attends to prior tokens (tiles already placed).

2h agoHN ↗

"If AI inference remains as desirable as Kimball expects, the evolution is likely to follow the same trajectory as the CPU. The CPU didn’t improve along a single axis but instead across simultaneously. Once transistor scaling slowed, chip and system architecture innovations of all kinds proliferated. The list of individual innovations that led to today’s ubiquitous, powerful personal compute could fill dozens of books. A few decades from now, the history of AI inference innovation will show similar depth."

Of the areas mentioned in the article, which are the most likely to have the most prominent innovative impact, and what will they entail?

1h agoHN ↗

The list of individual innovations that led to today’s ubiquitous, powerful personal compute could fill dozens of books.

https://a.co/d/0dMk8urP

which is the Hennesey and Patterson computer architecture book would serve the role of the "dozens of books" hyperbole rather well.

34m agoHN ↗

One of the biggest limitations right now is memory capacity (storing large models/contexts in memory) and bandwidth (transferring the relevant data/weights to the silicon that is performing the operations on that data). This would cover things like:

1. having more memory on the card/chip and/or faster access to that memory;

2. integrated memory and compute units optimized for matrix and vector multiply add operations;

3. optimized load circuitry to e.g. read memory in the stride and span (next row, next column) access patterns common to matrices or ensure that no/few parts of the chip are stalled waiting on data or operations to complete.

Another aspect is quantizations. These are similar to SIMD vector operations in that you are performing an operation on a block of n-bit data values at the same time, so can have optimized circuitry.

For 2 or 3 valued quantizations you can reduce various addition and multiplication operations to logic operations, avoiding circuitry for things like the half-adder, full-adder, and carry-lookahead.

Then there's adding specific circuitry for common operations such as ReLU like is done in hardware acceleration of image, video, etc. processing. There's a trade off here as optimized hardware would perform better at the specific operations but if those are too specific then they can't be used by different/newer model architectures. (Though it does make sense to try and optimize common operations/logic where possible.)

It would be interesting to see if these designs can/will benefit training as well, as that would bring down the time/cost/energy of training large models as well as making it easier for local fine-tuning.

5m agoHN ↗

A large fraction of the innovation in CPUs is driven by working around the memory wall. I anticipate AI inference will follow the same trend, and innovations that work around the autoregressive nature will be enormously impactful.

Speculative decoding is an example. An accurate draft model can reduce the number of times you stream through memory by a factor of 4x.