- 27 Mar, 2023 7 commits
-
-
Morph authored
For CPUs that support tpause, this should result in significant CPU power savings over thread yield in this spin wait.
-
Morph authored
MicroSleep allows the processor to pause for a "short" amount of time (in the microsecond range). This is useful for spin-waiting that does not require nanosecond precision. This uses the new TPAUSE instruction introduced on Intel's newest processors as part of the waitpkg instructions. For CPUs that do not support waitpkg instructions, this is equivalent to yield(). Co-Authored-By: liamwhite <liamwhite@users.noreply.github.com>
-
Morph authored
waitpkg introduces 3 instructions, UMONITOR, UMWAIT and TPAUSE.
-
liamwhite authored
qt: Fix log softlock
-
Narr the Reg authored
-
liamwhite authored
memory: rename global memory references to application memory
-
liamwhite authored
service: nfp: Add plain amiibo support
-
- 26 Mar, 2023 10 commits
-
-
liamwhite authored
tests: mark integer literals as unsigned
-
german77 authored
-
Liam authored
-
Morph authored
container_hash: use climits
-
Liam authored
-
Morph authored
CMakeLists: Use boost 1.79.0 instead
-
Morph authored
-
Morph authored
Values were randomly generated and the verification was done against boost 1.79.
-
Morph authored
Ports a small subset of boost's hash_value implementation (<= 1.80.0).
-
Morph authored
-
- 25 Mar, 2023 3 commits
-
-
bunnei authored
vulkan: fix scheduler chunk reserve
-
Morph authored
Pass GPU page table by reference inside TextureCache::ForEachImageInRegionGPU
-
Ross Schlaikjer authored
-
- 24 Mar, 2023 8 commits
- 23 Mar, 2023 3 commits
- 22 Mar, 2023 5 commits
-
-
Liam authored
-
Morph authored
Introduces PopModes to bring waiting logic into Pop, similar to Push.
-
Morph authored
-
Narr the Reg authored
-
bunnei authored
config: Fix controller config from resetting
-
- 21 Mar, 2023 4 commits
-
-
Morph authored
Adds the PushModes Try and Wait to allow producers to specify how they want to push their data to the queue if the queue is full. If the queue is full: - Try will fail to push to the queue, returning false. Try only returns true if it successfully pushes to the queue. This may result in items not being pushed into the queue. - Wait will wait until a slot is available to push to the queue, resulting in potential for deadlock if a consumer is not running.
-
Morph authored
-
Morph authored
-
Morph authored
Provides a simplified SPSC, MPSC, and MPMC bounded queue implementation using mutexes.
-