In a multi-threaded application running on a recent linux Distributed Shared Memory system, is there a straight forward way to count the number of requests per thread to remote (non-local) NUMA memory nodes?

I am thinking of using PAPI to count interconnect traffic. Is this the way to go?

In my application, threads are bound to a particular core or processor for their entire life-time. When the application begins, memory is allocated page wise and spread in a round-robin manner across all available NUMA memory nodes.

Thank you for your answers.

link|improve this question

50% accept rate
feedback

1 Answer

I'm not sure this qualifies as straight forward, and I don't know what a "Distributed Shared Memory System" is, but, on normal Linux anyway, if you have access to the source you may be able to count the requests yourself. You could use the answer to my "Can I get the NUMA node from a pointer address?" question here to figure out what node the memory requested is on, and knowing the node your thread is on tally up the remote requests. This is only going to tell you how often you're using remote memory, rather than when that memory is not in your local cache already and has to be fetched, so it may not be exactly what you want.

If you want to know about cache misses on remote memory, try adding the profiling tag to your question - it might attract more readers. If there's a profiler that will distinguish local memory misses from remote memory misses I'd be interested to find out too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.