First, a bit of background. There are many various comparison of distributed version control systems (DVCS) which compare size of repository, or benchmark speed of operations. I haven't found any that would benchmark network performance of various DVCS, and various protocols used... beside measuring speed of operations (commands) involvi...
What tools are available to profile a .NET program by measuring function execution times and generating graphs to visualize the time spent at various points in the call graph?
...
I'm currently looking for a good memory / leak detection tool for Windows. A few years ago, I used Numega's Boundschecker, which was VERY good. Right now it seems to have been
sold to Compuware, which apparently sold it again to some other company.
Trying to evaluate a demo of the current version has been so far very frustrating, in th...
Hi all,
I was trying to learn how to profile a simple python program using hotshot, but am facing a weird error,
import sys
import hotshot
def main(argv):
for i in range(1,1000):
print i
if __name__ == "__main__":
prof = hotshot.Profile("hotshot_edi_stats")
b,c = prof.runcall(main(sys.argv))
prof.close()
and the output,
...
I am using JetBrains dotTrace, I've profiled my app which is entirely CPU bound. But the results as you walk down the tree don't sum to the level above in the tree, I only see method calls not the body lines of the node in questions method.
Is it possible to profile the source code line by line.
i.e for one node:
SimulatePair() 99.04...
We've got a fairly large application running on VxWorks 5.5.1 that's been developed and modified for around 10 years now. We have some simple home-grown tools to show that we are not using too much memory or too much processor, but we don't have a good feel for how much headroom we actually have. It's starting to make it difficult to do...
I have a WPF application, that is sometimes freezing for maybe a half minute and then works fine.
I am thinking to profile that application.
Anybody knows a good tutorial of how to profile WPF application?
Or anybody has any idea on finding a way to know when it is freezing?
The freezing is not consistent, and not related to any usage pa...
I need to profile some operations in my program in great detail.
Something like cachegrind would be very nice.
But my problem is that it takes a long time to setup the data structure and i can't use it for the whole program. It will take hours to run.
Does anyone know about a profiling tool that comes with a library and where i can ju...
Recently I came across a tool which could analyse running python code and produced a visual representation similar to a code editor to allow one to step through the different parts of the code, seeing how many times each part was called, execution time, etc.
I can't find the reference to it again. Would anyone know what it might be?
...
I have tried Instruments and Shark to profile an iPhone app, but both use a data sampling approach, by regularly taking screenshots of thread stacks.
I would prefer to have a full coverage profiling tool, which would record every single function call and the time spent in functions and their subroutines. This seems intuitively better th...
Any recommendations for gratis (i.e. free as in free beer) profilers which can be integrated with Visual C++ 2005? I'm using Very Sleepy right now (which is really nice), but wouldn't mind shifting if there were a better option.
...
Let me explain my scenario first:
I have around 2000 tests to run, which take about 30 seconds in NUnit
I want to find out what's taking the time
I open Ants Profiler, and get it to profile the NUnit TestRunner, and load my test dll into the TestRunner
I then run the tests...
However, running the tests whilst profiling takes a lot lo...
What other programs do the same thing as gprof?
...
What programs use gmon.out?
...
I browsed and read a lot of questions/answers about profilers on StackOverflow, but still have one more question I haven't found an answer to.
I have been using TurboPowers Memory Sleuth for years with Delphi 7 and am still very hapy with it.
However, I plan to upgrade to Delphi 2010 and suspect that this program will not run anymore. ...
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 decision to put down the big bucks for AQTime, has anyone used VTune for Delphi, and if so, do you think it has any benefits that may make ...
Collecting usage statistics per web-page on sites is common practice, I'm interested in a similar thing, but for GUI:s. You see Google Chrome (and others) collect usage statistics so Google can find out what features people use, to data-mine what seems to "work".
A straight-forward way to do this is to explicitly log the interaction wit...
I have never done any profiling, and have come across the first place that I really want to do it.
Is it possible to profile my MS integration tests? What tools do I need? is there something built-in to VS 2008 professional?
...
Guys,
Has anybody used OProfile tool on android...If you are able to profile please provide the basic steps and any other configuration or setup in order to do that...
Regards,
Bharat Pawar
...
What is the best way to undertake Servlet profiling?
In particular I am looking for a solution that can show the execution times of the method calls within the servlet.
I am running the Servlet within a Tomcat environment.
I have tried VisualVM but it only allows me to see the method calls from the Tomcat thread rather than the Servle...