Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | CMakeLists: Disable C4100 and C4324 | Morph | 2022-10-22 | 1 | -9/+0 |
| | | | | Disabling C4100 is similar to -Wno-unused-parameter | ||||
* | bounded_threadsafe_queue: Use constexpr capacity and mask | Morph | 2022-06-15 | 1 | -86/+73 |
| | | | | | | | | While this is the primary change, we also: - Remove the mpsc namespace and rename Queue to MPSCQueue - Make Slot a private struct within MPSCQueue - Remove the AlignedAllocator template argument, as we use std::allocator - Replace instances of mask + 1 with capacity, and mask + 2 with capacity + 1 | ||||
* | gpu_thread: Move to bounded queue | Levi Behunin | 2022-06-03 | 1 | -0/+180 |