Tagged Questions

Profiling is the process of measuring an application or system by running an analysis tool called a profiler. Profiling tools can focus on many aspects: functions call times and count, memory usage, cpu load, and resource usage.

learn more… | top users | synonyms (2)

245
votes
28answers
50k views

What Are Some Good .NET Profilers?

What profilers have you used when working with .net programs, and which would you particularly recommend?
218
votes
18answers
80k views

What can I use to profile C++ code in Linux?

I have a C++ application I'm in the process of optimizing. What tool can I use to pinpoint my slow code? :)
123
votes
4answers
26k views

Python memory profiler

I want to know the memory usage of my Python application and specifically want to know what code blocks/portions or objects are consuming most memory. Google search shows a commercial one is Python ...
71
votes
15answers
3k views

Beyond Stack Sampling: C++ Profilers

A Hacker's Tale The date is 12/02/10. The days before Christmas are dripping away and I've pretty much hit a major road block as a windows programmer. I've been using AQTime, I've tried sleepy, ...
68
votes
10answers
8k views

Reducing Django Memory Usage. Low hanging fruit?

My memory usage increases over time and restarting Django is not kind to users. I am unsure how to go about profiling the memory usage but some tips on how to start measuring would be useful. I have ...
62
votes
6answers
13k views

How can you profile a Python script?

I've seen a quite a few questions on the Project Euler and other places asking how to time the execution of their solutions. Sometimes the given answers are somewhat kludgey - i.e., adding timing code ...
54
votes
20answers
14k views

Any decent C# profilers out there?

I urgently need a C# profiler. Although I'm not averse to paying for one, something which is free or at least with a trial version would be ideal since it takes time to raise a purchase order. Any ...
53
votes
7answers
2k views

Are C++ enums slower to use than integers?

It's really a simple problem : I'm programming a Go program. Should I represent the board with a QVector<int> or a QVector<Player> where enum Player { EMPTY = 0, BLACK = 1, ...
50
votes
5answers
16k views

Alternatives to gprof

What other programs do the same thing as gprof?
48
votes
4answers
9k views

Profiling ASP.NET websites with EQATEC Profiler

I'm searching for a free ASP.NET profiler, and I stumbled upon EQATEC Profiler for .NET, but I can't find any instructions on how to profile ASP.NET projects with it. Please post step-by-step ...
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 ...
40
votes
2answers
1k views

What is the fastest method for selecting descendant elements in jQuery?

As far is I know, there are a number of ways of selecting child elements in jQuery. //Store parent in a variable var $parent = $("#parent"); Method 1 (by using a scope) $(".child", ...
35
votes
5answers
1k views

Curiosity: Why does Expression<…> when compiled run faster than a minimal DynamicMethod?

I'm currently doing some last-measure optimizations, mostly for fun and learning, and discovered something that left me with a couple of questions. First, the questions: When I construct a method ...
35
votes
21answers
9k views

What's your favorite profiling tool (for C++)

So far, I've only used Rational Quantify. I've heard great things about Intel's VTune, but have never tried it! Edit: I'm mostly looking for software that will instrument the code, as I guess that's ...
35
votes
7answers
12k views

JavaScript Profiler in IE

Does anyone know a tool for Profiling JavaScript in IE? List available: IE8 (Internet Explorer 8 only) JavaScript Profiler YUI!
32
votes
4answers
14k views

How to measure time taken by a function to execute

I need to get time in milliseconds. Please advise.
30
votes
4answers
830 views

How to make my Haskell program faster? Comparison with C

I'm working on an implementation of one of the SHA3 candidates, JH. I'm at the point where the algorithm pass all KATs (Known Answer Tests) provided by NIST, and have also made it an instance of the ...
30
votes
6answers
18k views

Simplest way to profile a PHP script

What's the easiest way to profile a PHP script? I'd love tacking something on that shows me a dump of all function calls and how long they took but I'm also OK with putting something around specific ...
28
votes
3answers
15k views

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 in a page/script? I know about Firebug's profiler but I'd like something more than ...
27
votes
3answers
933 views

Best way of “looping over a 2-D array”, using Repa

I find the array library Repa for Haskell very interesting, and wanted to make a simple program, to try to understand how to use it. I also made a simple implementation using lists, which proved to be ...
27
votes
11answers
9k views

Performance tuning / Profiling of grails apps

What are your tricks / resources for performance tuning a grails app? I'm developing my first serious grails application, and got the basic functionality to work, so now I'd like to make it go ...
26
votes
1answer
396 views

Python line-by-line memory profiler?

I'm looking to generate, from a large Python codebase, a summary of heap usage or memory allocations over the course of a function's run. I'm familiar with heapy, and it's served me well for taking ...
26
votes
7answers
8k views

What tools do you recommend to profile Rails apps?

I've been looking for profiling tools for Rails for a while. I'm currently playing and testing ruby-prof and railsbench, but I kinda frustrated with the amount of tweaking and mangling required to ...
25
votes
13answers
10k views

Best .NET memory and performance profiler? [closed]

We are using Jetbrains' dotTrace. Can anyone recommend any other profiling tools that you think are better for profiling C# Windows Forms applications?
24
votes
1answer
14k views

How do I profile memory usage in Python?

I've recently become interested in algorithms and have begun exploring them by writing a naive implementation and then optimizing it in various ways. I'm already familiar with the standard Python ...
23
votes
5answers
9k views

What is the best way to profile javascript execution?

Is there a good profiler for javascript? I know that firebug has some support for profiling code. But I want to determine stats on a longer scale. Imagine you are building a lot of javascript code ...
22
votes
6answers
4k views

Trying to track down a memory leak / garbage-collection problem in Java

This is a problem I have been trying to track down for a couple months now. I have a java app running in that processes xml feeds and stores the result in a database. This has been giving intermittent ...
22
votes
5answers
24k views

How do I analyze a .hprof file?

I have a production server running with the following flag: -XX:+HeapDumpOnOutOfMemoryError Last night it generated a java-38942.hprof file when our server encountered a heap error. It turns out that ...
21
votes
3answers
5k views

Understanding Firebug profiler output

I've been trying to use Firebug's profiler to better understand the source of some JavaScript performance issues we are seeing, but I'm a little confused by the output. When I profile some code the ...
21
votes
6answers
9k views

How Can I Log and Find the Most Expensive Queries?

The activity monitor in sql2k8 allows us to see the most expensive queries. Ok, that's kewl, but is there a way I can log this info or get this info via query analyser? I don't really want to have the ...
20
votes
4answers
1k views

Tips for profiling misbehaving Emacs Lisp?

I customize Emacs a lot. Recently, I added something to my .emacs configuration that sporadically pegs my CPU at 100%, but I really don't know what it is. If I press C-g a bunch of times, eventually ...
19
votes
3answers
6k views

PHP memory profiling

What's a good way to profile a PHP page's memory usage? For example, to see how much memory my data is using, and/or which function calls are allocating the most memory. xdebug doesn't seem to ...
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 ...
18
votes
9answers
6k views

Decent profiler for Windows?

Does windows have any decent sampling (eg. non-instrumenting) profilers available? Preferably something akin to Shark on MacOS, although i am willing to accept that i am going to have to pay for such ...
18
votes
4answers
3k views

High resolution timer in .NET

I'd like to do some basic profiling of my code, but found that the DateTime.Now in C# only have a resolution of about 16 ms. There must be better time keeping constructs that I haven't yet found.
18
votes
9answers
3k views

What is the best way to profile PHP code

I'd like to find a way to determine how long each function in PHP, and each file in PHP is taking to run. I've got an old legacy PHP application that I'm trying to find the "rough spots" in and so ...
17
votes
4answers
381 views

Is performance of partial or curried functions well defined in Haskell?

In the following code: ismaxl :: (Ord a) => [a] -> a -> Bool ismaxl l x = x == maxel where maxel = maximum l main = do let mylist = [1, 2, 3, 5] let ismax = ismaxl mylist ...
17
votes
3answers
749 views

Profiling python C extensions

I have developed a python C-extension that receives data from python and compute some cpu intensive calculations. It's possible to profile the C-extension? The problem here is that writing a sample ...
17
votes
3answers
5k views

Profiling Django

My django application has become painfully slow on the production. Prolly it is due to some complex or unindexed queries. Is there any django-ish way to profile my application?
17
votes
6answers
16k views

W3WP.EXE using 100% CPU - where to start?

An ASP.NET web app running on IIS6 periodically shoots the CPU up to 100%. It's the W3WP that's responsible for nearly all CPU usage during these episodes. The CPU stays pinned at 100% anywhere from a ...
17
votes
4answers
3k views

Using cProfile results with KCacheGrind

I'm using cProfile to profile my Python program. Based upon this talk I was under the impression that KCacheGrind could parse and display the output from cProfile. However, when I go to import the ...
15
votes
5answers
309 views

Efficiently gathering information about the inner workings of a new PHP project. Tools? Techniques? Scripts?

I am soon to join a PHP project that has been developed over the course of several years. It's going to be huge, sparsely documented, many files, piles of code, no consitent quality level is to be ...
15
votes
2answers
2k views

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 looking for a visual tool that shows me what my Python code is doing in terms of CPU time and ...
15
votes
1answer
635 views

Understanding VS2010 C# parallel profiling results

I have a program with many independent computations so I decided to parallelize it. I use Parallel.For/Each. The results were okay for a dual-core machine - CPU utilization of about 80%-90% most of ...
15
votes
6answers
377 views

Diagnosing the .NET Legacy

Assume you are taking over a legacy .NET app. written in C# What are the top 5 diagnostic measures, profiling or otherwise that you would employ to assess the health of the application? I am not ...
15
votes
6answers
3k views

Profiling in Python: Who called the function?

I'm profiling in Python using cProfile. I found a function that takes a lot of CPU time. How do I find out which function is calling this heavy function the most? EDIT: I'll settle for a workaround: ...
15
votes
2answers
9k views

Memory Leaks in C# WPF

I could use some advice on tracking down the cause of memory leaks in C#. I understand what is a memory leak and I get why they occur in C# but I'm wondering what tools/strategies have you used in the ...
14
votes
3answers
165 views

How can I ignore libraries like jQuery when profiling JavaScript?

Of course, Firebug, Chrome's Web Inspector, Opera's Dragonfly and dynaTrace's AJAX tools for IE have profiling capabilities. However, I haven't found a tool that lets me 'ignore' a library. To give ...
14
votes
2answers
1k views

Chrome debugger - what is “(program)” in the profiler?

What is "(program)" in the function column of the Chrome debugger?
14
votes
4answers
884 views

Tools for analyzing performance of a Haskell program

While solving some Project Euler Problems to learn Haskell (so currently I'm a completly beginner) I came over Problem 13. I wrote this (naive) solution: --Get Number of Divisors of n numDivs :: ...

1 2 3 4 5 32