Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

44
votes
1answer
2k views

Profiling Android apps with Eclipse plugin TPTP instead of traceview

The standard way to profile an Android application in Eclipse is using the plugin DDMS and creating a trace file with all the information inside. If you want to view this information you can use ...
18
votes
9answers
7k views

.NET Memory Profiling Tools

I am on the lookout for good .NET CLR memory profiling tools. My key requirement is that it will play well with IIS and standalone CLR Apps. Ideally I would see what objects are allocated, where they ...
4
votes
1answer
145 views

How to profile my own functions in C++ and OpenGL?

Is there anything easy and simple to profile functions in C++/OpenGL? All I could find was gDEBugger. Looking through the documentation I can't find a way to do what I want. Let me explain... As I've ...
4
votes
1answer
192 views

How to speed up “PHP Depend”

I'm running PHP Depend on our code base to profile the PHP. It's a large code base, and I have been disappointed by how long it is taking to iterate through all of the files: Days. It's an internal ...
2
votes
2answers
88 views

How can I “hook into” Python from C++ when it executes a function? My goal is to profile

I'm implementing a profiler in an application and I'm a little flummoxed about how to implement Python profiling such that the results can be displayed in my existing tool. The application allows for ...
2
votes
3answers
143 views

Debugging slow functions in C programs (built by gcc)

Having source like this: void foo() { func1(); if(qqq) { func2(); }; func3(); func4(); for(...) { func5(); } } I want to obtain info like this: ...
1
vote
1answer
145 views

profiling with valgrind as opposed to gcc

for a while I have been using gprof to profile my C code but it is very very unstable, on every run it is giving me a different simulation time as well as %. I have decided to switch to valgrind, I am ...
1
vote
2answers
248 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
121 views

Profiling web app requests

I am building a web app and one of the tasks is to improve performance. I want to know of any tool that can be used for timing web pages. For example I need to be able to document to the managers ...
1
vote
3answers
495 views

Which is the best replacement for KProf?

I'm searching for a "good enough" gprof output visualizer. Kprof seems unmaintained. Profiling is an important part of (speed sensitive) applications development, but I fail to find support on the ...
0
votes
1answer
157 views

Building XHProf into CI (phpundercontrol) non-intrusively

I would love to build XHProf output and metrics into phpUnderControl. After doing a good amount of research, it seems the only path to XHProf is to actually change code to include and execute it. Does ...
0
votes
1answer
127 views

Profiling a signed WinForm dll in VS2010

I have a Winforms solution MySolution.exe having inside a MyControl.dll that I want to profile. When I try to run the performance profiling tool in VS 2010 on it it gives me the following warning ...
0
votes
3answers
236 views

What's a good profiling tool to use when source code isn't available?

I have a big problem. My boss said to me that he wants two "magic black box": 1- something that receives a micropocessor like input and return, like output, the MIPS and/or MFLOPS. 2- something that ...