• marcos@lemmy.world
    link
    fedilink
    arrow-up
    4
    arrow-down
    1
    ·
    2 months ago

    Imperative for loops have no guarantee at all that iterations could be executed in parallel.

    You can do some (usually expensive, and never complete) analysis to find some cases, but smart compilers tend to work the best the dumbest you need them to be. Having a loop that you can just blindly parallelize will some times lead to it being parallel in practice, while having a loop where a PhD knows how to decide if you can parallelize will lead to sequential programs in practice.

    • noli@programming.dev
      link
      fedilink
      arrow-up
      2
      ·
      2 months ago

      While you do have a fair point, I was referring to the case where one is basically implementing a map operation as a for loop.