• blahsay@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    10 tricks to speed up your cpu and trim belly fat. Electrical engineers hate them! Invest now! Start up is called ‘DefinitelyNotAScam’.

  • tombruzzo@lemm.ee
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    I don’t care. Intel promised 5nm 10ghz single core processors by this point and I still want it out of principle

  • rtxn@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    Cybercriminals are creaming their jorts at the potential exploits this might open up.

  • xantoxis@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    This change is likened to expanding a CPU from a one-lane road to a multi-lane highway

    This analogy just pegged the bullshit meter so hard I almost died of eyeroll.

    • rottingleaf@lemmy.zip
      link
      fedilink
      English
      arrow-up
      0
      ·
      4 months ago

      Apparently the percentage of people actually understanding what they are doing in the management part of the industry is now too low to filter out even such bullshit.

    • AnarchistArtificer@slrpnk.net
      link
      fedilink
      English
      arrow-up
      0
      ·
      4 months ago

      You’ve got to be careful with rolling your eyes, because the parallelism of the two eyes means that the eye roll can be twice as powerful ^1


      (1) If measured against the silly baseline of a single eyeroll

  • Buffalox@lemmy.world
    link
    fedilink
    English
    arrow-up
    0
    ·
    edit-2
    4 months ago

    Why is this bullshit upvoted?
    Already the first sentence, they change from the headline “without recoding” to “with further optimization”.
    Then the explanation “a companion chip that optimizes processing tasks in real-time”
    This is already done at compiler level and internally in any modern CPU for more than a decade.

    It might be possible to some degree for some specific forms of code, like maybe Java. But generally for the CPU this is bullshit, and the headline is decidedly dishonest.

  • Amanda@aggregatet.org
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    Has anyone been able to find an actual description of what this does? I clicked two layers deep and neither explains the details. It does sound like they’re doing CPU scheduling in the hardware, which is cool and makes some sense, but the descriptions are too vague to explain what the hell this is except “more parallelism goes brrrr” and it’s not clear to me why current GPUs aren’t already that.

  • Shadow@lemmy.ca
    link
    fedilink
    English
    arrow-up
    0
    ·
    4 months ago

    Hmm, so sounds like they’re moving the kernel scheduler down to a hardware layer? Basically just better smp?

    • Chocrates@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      4 months ago

      Processors have an execution pipeline, so a single command like mov has some number of actions the CPU takes to execute it. CPU designers already have some magic that allows them to execute these out of order as well as other stuff like pre calculating what they think the next command will probably be.

      It’s been a decade since my cpu class so I am butchering that explanation, but I think that is what they are proposing messing with

      • Kairos@lemmy.today
        link
        fedilink
        English
        arrow-up
        0
        ·
        4 months ago

        That’s accurate.

        Its done through multiple algorithms, but the general idea is to schedule calculations as soon as possible, accounting for data hazards to make sure everything is still equivalent to non out of order execution.

        There’s also branch prediction which is the same thing kind of except the CPU needs a way to ensure if the prediction was actually correct.