• piyuv@lemmy.world
    link
    fedilink
    English
    arrow-up
    7
    ·
    4 hours ago

    I’m not very good with C/C++ so please correct me, isn’t that what’s called a “race condition”? Parallelism can cause non-determinism but not in the same sense LLMs generate non-deterministic output. Compilers are not statistical machines.

    • ryannathans@aussie.zone
      link
      fedilink
      English
      arrow-up
      4
      ·
      4 hours ago

      You don’t need parallelism to have a race condition, just not handling an event with expected timing can cause one - like when two keys are pressed within one polling cycle and you depend on one being pressed before the other for some logic like up and right arrow for a diagonal but they register as right and up so the diagonal movement doesn’t trigger

      Compiler optimisation strategies sometimes use statistical machines and link time optimisation does use random number generators for producing output