• secret301@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    2
    ·
    10 months ago

    I was just thinking to myself if it was possible to have more threads than 2 for each core. I guess this answers that but I didn’t know you could have that many per core!

    Why isn’t it more common to have like 4 threads per core?

    • SlippyCliff76@sh.itjust.works
      link
      fedilink
      English
      arrow-up
      7
      ·
      10 months ago

      Multi-threading should just really be called “intelligent scheduling.” It’s making more efficient use of a CPU core by scheduling multiple different lines of code to run on a core at the same time. Some bits of code take longer to run then others and don’t make full use of the CPU during the time they run, so the CPU will schedule another thread/code snippet to run in that gap of downtime.

      I’m certain someone will correct me and add clarity to this explanation, of course.