Top "Profiling" questions

Profiling is the process of measuring an application or system by running an analysis tool called a profiler.

How to measure time taken between lines of code in python?

So in Java, we can do How to measure time taken by a function to execute But how is it …

python time profiling measure
How to trigger XDebug profiler for a command line PHP script?

XDebug offers the configuration directive "xdebug.profiler_enable_trigger" that allows to activate profiling by passing the GET or POST …

php configuration command-line profiling xdebug
Recommendations for a heap analysis tool for Java?

List your favorite heap analysis tools (e.g. jprofiler, jmap, ...). Let's keep it one tool per answer, with a short …

java memory profiling heap
How can I count the time it takes a function to complete in Java?

I need to measure the time it takes for a function to complete in Java. How can I do that? …

java profiling
Accurate timing of functions in python

I'm programming in python on windows and would like to accurately measure the time it takes for a function to …

python testing time profiling
Tool for analyzing large Java heap dumps

I have a HotSpot JVM heap dump that I would like to analyze. The VM ran with -Xmx31g, and …

java profiling
How to find slowest queries

Using Sql Server 2005 Profiler, what events, columns, and filters do you trace to find your slowest queries and stored procedures? …

sql-server sql-server-2005 profiling
Alternatives to gprof

What other programs do the same thing as gprof?

profiling profiler gprof
How to analyze memory using android studio

Recently switch to android studio from eclipse. How to check app heap and memory allocation in android studio? In Eclipse …

android android-studio profiling heap heap-memory
Why does Python code run faster in a function?

def main(): for i in xrange(10**8): pass main() This piece of code in Python runs in (Note: The timing is …

python performance profiling benchmarking cpython