On Thu, May 28, 2009 at 9:12 AM, Ivan Novick wrote:
> Hi,
> I would like to detect cases of false sharing in my program.
> By this I mean cases where multiple threads are both trying to write data to
> different memory locations but those locations are closest enough in memory
> that they are on t
Hi,
I would like to detect cases of false sharing in my program.
By this I mean cases where multiple threads are both trying to write data to
different memory locations but those locations are closest enough in memory
that they are on the on the same cache line.
The result would be delays on thre