Most active commenters
  • high_na_euv(5)
  • IshKebab(3)

←back to thread

283 points walterbell | 24 comments | | HN request time: 1.1s | source | bottom
Show context
darkamaul ◴[] No.45769289[source]
Better (or simply more) ARM processors, no matter who makes them, are a win. They tend to be far more power-efficient, and with performance-per-watt improving each generation, pushing for wider ARM adoption is a practical step toward lowering overall energy consumption.
replies(5): >>45769421 #>>45769508 #>>45769815 #>>45769973 #>>45772372 #
ahoka ◴[] No.45769508[source]
Are ARM processors inherently power efficient? I doubt.

Performance per watt is increasing due to the lithography.

Also, Devon’s paradox.

replies(5): >>45769580 #>>45770046 #>>45770800 #>>45773990 #>>45779586 #
1. jorvi ◴[] No.45770046[source]
They aren't inherently power efficient because of technical reasons, but because of design culture reasons.

Traditionally x86 has been built powerful and power hungry and then designers scaled the chips down whereas it's the opposite for ARM.

For whatever reason, this also makes it possible to get much bigger YoY performance gains in ARM. The Apple M4 is a mature design[0] and yet a year later the M5 is CPU +15% GPU +30% memory bandwidth +28%.

The Snapdragon Elite X series is showing a similar trajectory.

So Jim Keller ended up being wrong that ISA doesn't matter. Its just that it's the people in the ISA that matter, not the silicon.

[0] its design traces all the way back to the A12 from 2018, and in some fundamental ways even to the A10 from 2016.

replies(5): >>45770152 #>>45770164 #>>45771322 #>>45771561 #>>45780873 #
2. IshKebab ◴[] No.45770152[source]
Do you have any actual evidence for that? Intel does care about power efficiency - they've been making mobile CPUs for decades. And I don't think they are lacking intelligent chip designers.

I would need some strong evidence to make me think it isn't the ISA that makes the difference.

replies(3): >>45770173 #>>45770460 #>>45774829 #
3. high_na_euv ◴[] No.45770164[source]
As far as I know people aren't part of ISA :)
replies(1): >>45772991 #
4. high_na_euv ◴[] No.45770173[source]
Isn't Lunar Lake first mobile chip with focus on energy eff? And it is reasonably efficient

We will see how big improvement is it's successor panther lake in January on 18A node

>I would need some strong evidence to make me think it isn't the ISA that makes the difference.

It is like saying that Java syntax is faster than C# syntax.

Everything is about the implementation: compiler, jit, runtime, stdlib, etc

If you spent decades of effort on peformance and ghz then don't be shocked that someone who spent decades on energy eff is better in that category

replies(3): >>45770819 #>>45770823 #>>45772691 #
5. jorvi ◴[] No.45770460[source]
https://chipsandcheese.com/p/arm-or-x86-isa-doesnt-matter

Basically, x86 uses op caches and micro ops which reduces instruction decoder use, the decoder itself doesn't use significant power, and ARM also uses op caches and micro ops to improve performance. So there is little effective difference. Micro ops and branch prediction is where the big wins are and both ISAs use them extensively.

If the hardware is equal and the designers are equally skilled, yet one ISA consistently pulls ahead, that leads to the likely conclusion that the way the chips get designed must be different for teams using the winning ISA.

For what it's worth, the same is happening in GPU land. Infamously, the M1 Ultra GPU at 120W equals the performance of the RTX 3090 at 320W (!).

That same M1 also smoked an Intel i9.

replies(2): >>45771281 #>>45771720 #
6. cogman10 ◴[] No.45770819{3}[source]
> Isn't Lunar Lake first mobile chip with focus on energy eff?

Not by a long shot.

Over a decade ago, one of my college professors was an ex-intel engineer who worked on Intel's mobile chips. He was even involved in an Intel ARM chip that ultimately never launched (At least I think it never launched. It's been over a decade :D).

The old conroe processors were based on Intel's mobile chips (Yonah). Netburst didn't focus on power efficiency explicitly so and that drove Intel into a corner.

Power efficiency is core to CPU design and always has been. It's easy create a chip that consumes 300W idle. The question is really how far that efficiency is driven. And that may be your point. Lunar Lake certainly looks like Intel deciding to really put a lot of resource on improving power efficiency. But it's not the first time they did that. The Intel Atom is another decades long series which was specifically created with power in mind (the N150 is the current iteration of it).

7. mrsmrtss ◴[] No.45770823{3}[source]
Actually, if you had made an opposite example, it might have gone against your point. ;) C# gives you a lot more control over memory and other low-level aspects, after all.
replies(2): >>45770980 #>>45771930 #
8. high_na_euv ◴[] No.45770980{4}[source]
Yet how much perf in recent dot nets comes from that, and how much comes from "Span<T>"ning whole BCL?
replies(1): >>45771187 #
9. mrsmrtss ◴[] No.45771187{5}[source]
There’s much more to it than just Span<T>. Take a look at the performance improvements in .NET 10: https://devblogs.microsoft.com/dotnet/performance-improvemen.... When it comes to syntax, even something like structs (value types) can be a decisive factor in certain scenarios. C# is fast and with some effort, it can be very fast! Check out the benchmarks here: https://benchmarksgame-team.pages.debian.net/benchmarksgame/...
replies(1): >>45771419 #
10. IshKebab ◴[] No.45771281{3}[source]
ARM doesn't use micro-ops in the same way as x86 does at all. And that's not the only difference, e.g. x86 has TSO.

I'm not saying the skill of the design team makes zero difference, but it's ludicrous to say that the ISA makes no difference at all.

The claims about the M1 Ultra appear to be marketing nonsense:

https://www.reddit.com/r/MachineLearning/comments/tbj4lf/d_a...

11. znpy ◴[] No.45771322[source]
You’re conveniently skipping the part where x86 can run software from 40 years ago but arm can drop entire instruction sets no problem (eg: jazelle).

Had been arm so weighted by backwards compatibility i doubt it would be so good as it is.

I really think intel/amd should draw a line somewhere around late 2000 and drop compatibility with stuff that slow down their processors.

replies(2): >>45771540 #>>45779448 #
12. high_na_euv ◴[] No.45771419{6}[source]
I know that C# is fast, this is my favourite lang, but it is hard to say honestly which one is faster

I love the saying "i dont trust benchmarks that i didn't fake myself"

13. le-mark ◴[] No.45771540[source]
> jazelle

That’s a blast from the past; native Java bytecode! Did anyone actually use that? Some J2ME phones maybe? Is there a more relevant example?

replies(1): >>45781279 #
14. ◴[] No.45771561[source]
15. lossolo ◴[] No.45771720{3}[source]
> Infamously, the M1 Ultra GPU at 120W equals the performance of the RTX 3090 at 320W

That's not true.

16. layer8 ◴[] No.45771930{4}[source]
That’s semantics though, not syntax. What’s holding Java performance back in some areas is its semantics.

It might be the same with x86 and power-efficiency (semantics being the issue), but there doesn’t seem to be a consensus on that.

17. IshKebab ◴[] No.45772691{3}[source]
> It is like saying that Java syntax is faster than C# syntax.

Java and C# are very similar so that analogy might make sense if you were comparing e.g. RISC-V and MIPS. But ARM and x86 are very different, so it's more like saying that Go is faster than Javascript. Which... surprise surprise it is (usually)! That's despite the investment into Javascript implementation dwarfing the investment into Go.

18. lambdaone ◴[] No.45772991[source]
People are absolutely part of an ISA's ecosystem. The ISA is the interface between code and CPU, but the code is generally emitted by compilers, and executed in the context of runtimes and operating systems, all designed by people and ultimately dependent on their knowledge of and engagement with the ISA. And for hot code in high-performance applications, people will still be writing directly in assembler directly to the ISA.
replies(1): >>45773546 #
19. high_na_euv ◴[] No.45773546{3}[source]
ISA != ISAs ecosystem

ISA is just ISA

replies(1): >>45775876 #
20. array_key_first ◴[] No.45774829[source]
Intel has made SOC designs with power efficiency very, very close to M series. Look at lunar lake and compare it to what was available at the time.
21. chrystalkey ◴[] No.45775876{4}[source]
But you get the Environment for free if you choose the ISA, so ISA=>ISA ecosystem. It really does matter when making a decision
22. ◴[] No.45779448[source]
23. vardump ◴[] No.45780873[source]
I generally agree, although one should not forget x86 (and AMD64) leaves about 3-10% performance on the table due to having a memory model that doesn't allow to reorder loads with other loads and stores with other stores.
24. hmry ◴[] No.45781279{3}[source]
> Did anyone actually use that?

AFAIK you needed to pay a license fee to write programs using Jazelle instructions (so you needed to weigh whether the speedup of Jazelle was cheaper than just buying a more powerful CPU), and the instruction set itself was also secret, requiring an NDA to get any documentation (so no open source software could use it, and no open toolchains supported it).

I remember being very disappointed when I found out about that