Skip to content
Snippets Groups Projects
  1. Dec 03, 2020
    • Florian Fischer's avatar
      prevent data races when initializing the workers PRNG seeds · db5d1b34
      Florian Fischer authored
      Each worker currently calls uniformIntDistribution(randomEngine)
      which modifies the randomEngine internally and thus produces data races
      when the threads run in parallel.
      
      This change calls uniformIntDistribution(randomEngine) on the main thread
      for each worker and passes the resulting seeds to the workerLoop.
      
      The data race was found by gcc's tsan.
      db5d1b34
  2. Dec 02, 2020
  3. Dec 01, 2020
  4. Nov 30, 2020
  5. Nov 27, 2020
  6. Nov 26, 2020
  7. Nov 25, 2020
  8. Nov 23, 2020
  9. Nov 20, 2020
  10. Nov 19, 2020
  11. Nov 17, 2020
  12. Nov 16, 2020
Loading