Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
299 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) ...
5
votes
3answers
604 views

Is VTune Worth Considering for Delphi?

Running through all the questions on profiling tools, I was surprised to discover VTune by Intel that I hadn't heard of before. At $700, it is even more expensive than AQTime. But before I make the ...
4
votes
2answers
240 views

Optimzing SSE-code

I'm currently developing a C-module for a Java-application that needs some performance improvements (see Improving performance of network coding-encoding for a background). I've tried to optimize the ...
3
votes
1answer
180 views

Intel Assembler optimization

I'm currently trying to optimize the code emitted from a home-made compiler, for a home-made language. I've tried out Intel VTune to see where the bottlenecks are: ...
1
vote
1answer
127 views

When profiling, most of the time is spent in nvoglv64.dll. What should I deduce?

I am profiling a C++ application with Intel VTune Amplifier. Most of the time seems to be spent in nvoglv64.dll more precisely in DrvPresentBuffers and/or KeSynchoronizeExecution. Note that I have a ...
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
2answers
249 views

How do I generate symbol information to use with Linux version of Intel's VTune Amplifier?

I am using Intel VTune Amplifier XE 2011 to analyze the performance of my program. I want to be able to view the source code in the analysis results, and the documentation says I need to provide the ...
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
1answer
17 views

Vtune profiler for Adobe Flash Player

I found this link which explains how to profile a Tamarin application with vtune. Since tamarin and Adobe Flash share the same code base, can I use it to profile Flash apps too ?
0
votes
0answers
26 views

VTune Analyzer Issue - Internal collection error has occured

I am trying to analyze an application with the help of VTune analyzer (Intel VTune Amplifier XE 2011). My system details are as follows: GCC: gcc version 4.4.0 20090506 (Red Hat 4.4.0-4) (GCC) uname ...
0
votes
0answers
28 views

OpenMP, VTune, idle threads

I use VTune to check concurrency of my code. Here is the screen-shot of the output. You can see, that there is some initial period with 1 thread, then ~0.3 sec of intensive multi-thread work (brown ...
0
votes
1answer
126 views

vtune with mingw

I am trying to use vtune with my application compiled with mingw in Windows. When I try to see souce code information, vtune says the is not line information in the resulting executable. I am ...
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
0answers
16 views

What is LAX16_N4_Loop_M16gas_1?

So I am programming using Intel multithread MKL for HPC. And Intel VTune reported my top hotspot is LAX16_N4_Loop_M16gas_1. I am not certain what it is and Google did not give any useful information. ...
0
votes
1answer
186 views

How to measure Windows API code coverage of app level benchmarks

My job involves system-level performance testing with third party tools that I do not have sources for. I'm also testing Windows, and can use debugging symbols but not Windows source code. I'd like ...
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 ...
0
votes
3answers
202 views

Measuring execution time of selected loops

I want to measure the running times of selected loops in a C program so as to see what percentage of the total time for executing the program (on linux) is spent in these loops. I should be able to ...