Intel doesn’t think that Arm CPUs will make a dent in the laptop market

L4sBot@lemmy.worldmod to Technology@lemmy.world – 305 points –
Intel doesn’t think that Arm CPUs will make a dent in the laptop market
arstechnica.com

Intel doesn’t think that Arm CPUs will make a dent in the laptop market::"They've been relegated to pretty insignificant roles in the PC business."

130

You are viewing a single comment

No laptop manufacturers would switch to arm until a good x86 compatibility comes along. People would make huge fuss if they can't use their favorite apps or if those apps don't run decently

There's already CPUs with extra instructions specifically designed for efficient emulation of other instruction sets. This includes ARM CPUs with x86 emulation at near native speed.

Wouldn't adding a bunch of extra features to an ARM CPU make it become less power efficient and more like x86?

I've heard that ARM isn't inherently more power efficient in some special way over x86, x86 has just been around so long and has had so many extra instructions added to it over the years, but that's what allows it to do so much / be so performant. If you took an ARM CPU and did the same you'd have roughly the same performance/watt.

Yes and no, it's not about the instruction set size but about general overhead.

The x86 architecture makes a lot of assumptions that require a bunch of circuitry to be powered on continously unless you spend a ton if effort on power management and making sure anything not currently needed can go into idle - for mobile CPUs there's a lot of talk about "race to idle" as a way to minimize power consumption for this exact reason, you try to run everything in batches and then cut power.

The more you try to make ARM cover the same usecases and emulate x86 the more overhead you add, but you can keep all that extra stuff powered off when not in use. So you wouldn't increase baseline power usage much, but once you turn everything on at once then efficiency ends up being very similar.