concurrency-hierarchy-bench
concurrency-hierarchy-bench copied to clipboard
Supporting code for the concurrency hierarchy described in this blog post: https://travisdowns.github.io/blog/2020/07/06/concurrency-costs.html.
Deterministic, but no locks or atomics. Useful to show HW performance for false-sharing in an ostensibly real situation. Initial commit adds the logical thread ID value as an argument to...
As far as I got today. I used http://www.hybridkernel.com/2015/01/18/binding_threads_to_cores_osx.html as a reference. Still getting some C++ errors, probably have something configured wrong with the standards setting: ```bash error: no matching...
On Arm (AArch64), you are using the **YIELD** instruction to delay when spinning. This is not the purpose of the **YIELD** instruction. The purpose of the **YIELD** instruction is to...