Tagged Questions

7
votes
3answers
298 views

Profiling help required

I have a profiling issue - imagine I have the following code... void main() { well_written_function(); badly_written_function(); } void well_written_function() { for (a small number) ...
1
vote
3answers
63 views

Timings reported by profiler vs true timings - why the discrepancy?

I have two chunks of code that do the same operation. One chunk written by myself, the other written by a third party. They are both compiled into a single executable. The third party code appears to ...
1
vote
3answers
279 views

Which compilation option should be set for profiling?

I need to profile an application compiled with intel's compiler via VC++. I'm using VTune to profile my code. My understanding is that in release mode I won't have the debug information that is ...
0
votes
0answers
85 views

What does mcs stand for in VTUNE? [closed]

I am using Vtune (9.1) and noticed that it says things like "Self Time 103,425 mcs" - but what does mcs stand for? If I search in the help system I get no results!
0
votes
3answers
263 views

vtune - no symbols available

I have used vtune several times in the past, usually without too much trouble. Unfortunately the gaps between each use are often so long that I forget some aspects of how to use it each time. I know ...