Hacker News

Top stories

Live mirror
30 storiesupdated just nowView source snapshot
  1. GPT-6 Sol and Luna(openai.com)
    709comments
  2. Jev in 25 Lines of Python(nobodywho.ai)
    9comments
  3. Claude Opus 5.5(anthropic.com)
    929comments
  4. Transit rewards(waymo.com)
    124comments
  5. OpenAI GPT–6 Astra breaks Enigma message that has resisted solution since 2005(cryptocellar.org)
    385comments
  6. Data-only attacks are easier than you think (2024)(usenix.org)
    14comments
  7. Show HN: Npunlock – Run custom C kernels for Intel NPUs(github.com/hsfzxjy)
    3comments
  8. 'We hacked the FBI:' Hackers say they have data on all FBI employees(404media.co)
    409comments
  9. Microsoft killed FoxPro in 2007. Anyway, here's FoxPro revived(foxscript.org)
    175comments
  10. ReBarUEFI: Resizable BAR for almost any UEFI system(github.com/xcuri0)
    45comments
  11. What California is learning from solar panels built over irrigation canals(kqed.org)
    344comments
  12. SAML: A fractal of bad design(trailofbits.com)
    137comments
  13. How did AMD Ryzen get 50% faster in two years?(lemire.me)
    120comments
  14. No Easy Fix for Bogus Respondents in Online Opt-In Polls(pewresearch.org)
    6comments
  15. WordPress: Unauthenticated path traversal leading to conditional RCE(github.com/wordpress)
    95comments
  16. Claude Opus 5.5 Intelligence, Performance and Price Analysis (Max)(artificialanalysis.ai)
    88comments
  17. Pentagon says overreliance on AI contributed to missile strike on Iran school(bloomberg.com)
    305comments
  18. Unreal Agent(unreallabs.ai)
    103comments
  19. People hooked on vapes try a new way to quit: cigarettes(bloomberg.com)
    191comments
  20. The current balance of power in open models(interconnects.ai)
    27comments
  21. The softness of metal(psyche.co)
    11comments
  22. Grammarly will send unhinged messages to all your users if you try to cancel(reddit.com)
    28comments
  23. Obscura: VPN that can't log your activity(obscura.com)
    104comments
  24. How often do you think about the 1893 World's Fair?(thebirthofacapital.info)
    1comments
  25. Show HN: JevBench, a reproducible benchmark for typed decision models(benchmarkheaven.com)
    25comments
  26. Side-stepping the Secretary Problem, unwittingly(evalapply.org)
    13comments
  27. OpenAI is well positioned to fast-follow Jev(arcturus-labs.com)
    207comments
  28. Delta: Highly available, strongly consistent storage using chain replication (2022)(fb.com)
    1comments
  29. Markdown in /src(htmx.org)
    68comments
  30. Apple has added persistent 'ads' to iOS, and it's driving users crazy(techradar.com)
    514comments

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.

3d 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.

11h 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.

3d 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.