Analyzers
Talk to fellow users of Intel Analyzer tools (Intel VTune™ Profiler, Intel Advisor)

Line-by-line profiling?

bkustel
Beginner
496 Views
I have not yet been able to figure out how to profile individual lines of code inside a specific functionusing VTune 7.2 for Windows. The online material said it could help "identify problematic lines of code" but I have yet to be able to figure out how to get it to profile below the level of 'functions'. Is there not some what to get it to list the timing of each line inside a function I wish to analyze?
0 Kudos
1 Reply
David_A_Intel1
Employee
496 Views
By viewing the source code of a function identified in the VTune analyzer as a hotspots, you can see the statistics associated with lines of source code.
The VTune analyzer cannot measure statistics for each and every line of code. Doing so would basically hang the system, that is, it would be unresponsive, because of the overhead. The whole point of sampling is to allow the system to run at near full speed, just as it will when executing your code under normal circumstances.
By viewing the annotated source code, you can determine which sections of a function are impacting performance. Typically, you will want to collect samples based on processor events other than Clockticks, once you have identified the hotspot function(s). This will help you to determine why the code is a hotspot. See the Tuning Assistant and the online help for info on common coding pitfall events and primary/secondary tuning events.
0 Kudos
Reply