I am looking at the performance of OpenMP program, specifically cache and memory performance. I have found guidelines while back ago how to analyze performance with Vtune that mentioned which counters to watch out for. However now cannot seem to find the manual.

If you know which manual I have in question or if you know the counters/events, please let me know. Also if you have other techniques for analyzing multithreaded memory performance, please share if you can

Thanks

link|improve this question

77% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Here is an article discussion this topic.

The most common counters to examine are L2 cache misses and branch prediction misses.

Note that, in VS2010, you can use the concurrency visualizer in the new profiling tools to directly see this. It does a great job of helping you analyze this information, including directly showing you how your code lays out, showing you misses, blocks, and many other useful tools for debugging and profiling concurrent apps.

link|improve this answer
thanks, I use Linux for development/deployment but i can parse out hardware stuff from the article. – Anycorn Dec 30 '09 at 23:40
Yeah - the same info should work. Intel has some commerical offerings to help with this, as well... – Reed Copsey Dec 30 '09 at 23:42
VTune works well on linux: software.intel.com/en-us/intel-vtune – Reed Copsey Dec 30 '09 at 23:43
I have been using vtune, but not for concurrency profiling. VT is free for noncommercial. they have thread analyzer as well, but I do not have it yet – Anycorn Dec 30 '09 at 23:51
do you know if Visual Studio profiler has capability to collect data on remote UNIX, and display locally? Linux offerings seem to be lacking as far as the visualization is concerned in OpenMP domain – Anycorn Dec 31 '09 at 0:05
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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