Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. GPT-6 Sol and Luna(openai.com)
    664comments
  2. Claude Opus 5.5(anthropic.com)
    872comments
  3. Transit rewards (Waymo pays you to take the train)(waymo.com)
    47comments
  4. Data-only attacks are easier than you think (2024)(usenix.org)
    5comments
  5. OpenAI GPT–6 Astra breaks Enigma message that has resisted solution since 2005(cryptocellar.org)
    373comments
  6. 'We hacked the FBI:' Hackers say they have data on all FBI employees(404media.co)
    361comments
  7. Microsoft killed FoxPro in 2007. Anyway, here's FoxPro revived(foxscript.org)
    155comments
  8. ReBarUEFI: Resizable BAR for almost any UEFI system(github.com/xcuri0)
    36comments
  9. What California is learning from solar panels built over irrigation canals(kqed.org)
    266comments
  10. No Easy Fix for Bogus Respondents in Online Opt-In Polls(pewresearch.org)
    1comments
  11. SAML: A fractal of bad design(trailofbits.com)
    123comments
  12. How did AMD Ryzen get 50% faster in two years?(lemire.me)
    103comments
  13. Claude Opus 5.5 Intelligence, Performance and Price Analysis (Max)(artificialanalysis.ai)
    77comments
  14. WordPress: Unauthenticated path traversal leading to conditional RCE(github.com/wordpress)
    90comments
  15. Pentagon says overreliance on AI contributed to missile strike on Iran school(bloomberg.com)
    263comments
  16. Unreal Agent(unreallabs.ai)
    93comments
  17. The current balance of power in open models(interconnects.ai)
    21comments
  18. The Softness of Metal(psyche.co)
    2comments
  19. OpenAI is well positioned to fast-follow Jev(arcturus-labs.com)
    200comments
  20. People hooked on vapes try a new way to quit: cigarettes(bloomberg.com)
    148comments
  21. Show HN: JevBench, a reproducible benchmark for typed decision models(benchmarkheaven.com)
    20comments
  22. Delta: Highly available, strongly consistent storage using chain replication (2022)(fb.com)
    1comments
  23. Obscura: VPN that can't log your activity(obscura.com)
    88comments
  24. Native apps written in TypeScript and CSS(github.com/geastack)
    34comments
  25. Markdown in /src(htmx.org)
    55comments
  26. Apple has added persistent 'ads' to iOS, and it's driving users crazy(techradar.com)
    494comments
  27. 16-bit Intel 8088 chip (c. 1985)(allpoetry.com)
    14comments
  28. Side-stepping the Secretary Problem, unwittingly(evalapply.org)
    13comments
  29. Show HN: Training a model to identify AI web content from structure alone(arxiv.org)
    13comments
  30. George Lucas Returns to Earth, Bearing Gifts(commonedge.org)
    60comments

How did Apple Silicon get 50% faster in three years? – Daniel Lemire's blog

28 pointsby 3d agolemire.me
13 comments
3d agoHN ↗

Answer might be in the comments on the page: Apple has access to the best TSMC nodes.

3d agoHN ↗

AMD is also using N2 so it will be interesting to compare Zen 6 against M6.

2d agoHN ↗

Yes, i am sceptical of the claim in the article

3d agoHN ↗

Better architecture.

Apple went wide, not deep. I believe even the A series were wider than normal. Also that MMU overhead must be a killer for everyone else.

3d agoHN ↗

How much is SIMD actually useful in general computing ? I can see it being useful for stuff like graphics, video, audio and maybe AI. For other general purpose computing like browser rendering or word processing or spreadsheets the impact will be much lower.

3d agoHN ↗

The simdutf Library has shown that SIMD can be useful for text processing too. Some aspects of browser rendering have been accelerated such as pathfinder_simd in servo.

2d agoHN ↗

Exactly SOME, most of the other stuff where the CPU spends a lot of time is not. Most code is boring if do this else do that, its quite rare to actually process a lot of parallel data.

3d agoHN ↗

Parsing large JSON can supposedly be much accelerated by SIMD

2d agoHN ↗

Well theres not much point in just parsing a large json file, there will always be more work which cant be done using SIMD and that work time will be significantly larger than the portion spent parsing.

9h agoHN ↗

That depends on the application. Maybe I have 1TB of json files in S3 and I want to compute an aggregate value from one of its fields.

2d agoHN ↗

Roughly, there are two types of code in a user application: logic and media related. There are many exceptions, but logic code generally doesn’t need a lot of CPU. Media algorithms on the other hand are all CPU hogs, and SIMD helps there quite a bit.

Now, I also happen to think that modern desktops run a lot of background survtech…some from the operating system itself, but most from third-party software and web pages. So, in addition to more CPU performance, I would also like more system utilities that spy on the spies and automatically puts them in some public score of shame.

3d agoHN ↗

Well first A20 Pro didn't get wider, it actually shrink back to 9 decode width. It would be a lot better to compare it on the A silicon rather than M.

Second is that Apple's improvement were done when they were state of the art and leading the pack. This is a lot harder than when you are behind and being shown how much more room to grow.

The A20 Pro is the largest leap in performance in recent or perhaps in all of Apple SoC history. It doesn't get enough credit and attentions that it deserves.

Compared this to the article "How did AMD Ryzen get 50% faster in two years?" The Zen 3 uArch being used in the article came out in 2020. So it is more like AMD got 50% faster in 5 years.

And perhaps this also answer and refer back to the previous HN submission and comments as to why ARM Mac are slower on SVT-AV1 encoding. Apple's SIMD performance is still behind AVX-512. But it is for good reason though and the trade off IMO is well worth it.