Top "Profiling" questions

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

Is there a visual profiler for Python?

I use cProfile now but I find it tedious to write pstats code just to query the statistics data. I'm …

python user-interface profiling profiler
linux perf: how to interpret and find hotspots

I tried out linux' perf utility today and am having trouble in interpreting its results. I'm used to valgrind's callgrind …

c++ linux performance profiling perf
Call stack in the perf profiler

I'm running "perf" in the following way: perf record -a --call-graph -p some_pid perf report --call-graph --stdio Then, I …

linux profiling perf
Javascript memory profiler for Firefox

Is there a tool/plugin/function for Firefox that'll dump out a memory usage of Javascript objects that you create …

javascript firefox memory profiling
Memory Allocation Profiling in C++

I am writing an application and am surprised to see its total memory usage is already too high. I want …

c++ memory-management profiling
cProfile saving data to file causes jumbles of characters

I am using cProfile on a module named bot4CA.py so in the console I type: python -m cProfile …

python file command-line profiling cprofile
Is there a SQL Server Profiler for SQL Server Express?

Is there a SQL Server Profiler for SQL Server Expess? Maybe an open-source one? Or maybe just a tool that …

sql-server profiling sql-server-express
accurately measure time python function takes

I need to measure the time certain parts of my program take (not for debugging but as a feature in …

python time profiling timeit
How to use Toad to trace SQL

How to use Toad to trace what sql are being executed by my application? All I want to do is …

performance oracle profiling toad
Recommendations for C Profilers?

Everyone always says to profile your program before performing optimizations but no-one ever describes how to do so. What are …

c profiling profiler