(no title)
msanlop | 1 year ago
The way delegation locks work is by having threads delegate their critical function instead of getting exclusive access to shared memory. Think of a client/server model, where the server executes other core's critical sections. For machines with very high core counts, the result is that the shared memory remains valid in the delegate's cache, instead of each new lock holder getting cache misses and fetching memory from other cores (or worse, other sockets).
senderista|1 year ago
https://people.csail.mit.edu/shanir/publications/Flat%20Comb...
msanlop|11 months ago