Concurrent Queues and Work Stealing Exercises

part1: concurrent queues
part2: work stealing / scheduling

tldr:

  • circular buffers and static arrays are fast
  • False Sharing bad
  • cost of False Sharing can outweigh benefit of Work Stealing

See pdfs for more