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.”

  • Natanael
    link
    fedilink
    English
    arrow-up
    4
    ·
    8 months ago

    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.

    • AzureKevin@lemmy.world
      link
      fedilink
      English
      arrow-up
      3
      arrow-down
      1
      ·
      8 months ago

      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.

      • Natanael
        link
        fedilink
        English
        arrow-up
        3
        ·
        8 months ago

        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.