User Mike Dunlavey - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T15:52:21Z http://stackoverflow.com/feeds/user/23771 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1879329/what-is-the-most-appropriate-performance-counter-type-for-measuring-operation-tim/1880850#1880850 0 Answer by Mike Dunlavey for What is the most appropriate performance counter type for measuring operation time? Mike Dunlavey 2009-12-10T13:03:06Z 2009-12-10T13:03:06Z <p>An answer and a question:</p> <p>Answer: Low-tech works for me. You want microseconds? Loop it 10^6 times and use your watch.</p> <p>Question: Are you asking because you want to make your code faster? Then <a href="http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1562802#1562802">consider this</a>.</p> http://stackoverflow.com/questions/1777556/alternatives-to-gprof/1779343#1779343 3 Answer by Mike Dunlavey for Alternatives to gprof Mike Dunlavey 2009-11-22T17:26:14Z 2009-12-09T22:17:47Z <p><strong>gprof</strong> exists for historical reasons. <a href="http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/378024#378024">Try this.</a> <a href="http://stackoverflow.com/questions/926266/performance-optimization-strategies-of-last-resort/927773#927773">Here's an example.</a></p> <p><strong>gprof</strong> perpetuates certain myths about performance, such as:</p> <ul> <li><p><em>that program counter sampling is useful.</em><br> It is only useful if you have an unnecessary hotspot bottleneck such as a bubble sort of a big array of scalar values. As soon as you, for example, change it into a sort using string-compare, it is still a bottleneck, but program counter sampling will not see it because now the hotspot is in string-compare. On the other hand if it were to sample the <strong>extended</strong> program counter (the call stack), the point at which the string-compare is called, the sort loop, is clearly displayed.</p></li> <li><p><em>that timing functions is more important than capturing time-consuming lines of code.</em><br> The reason for that myth is that <strong>gprof</strong> was not able to capture stack samples, so instead it used "instrumentation" which times functions, counts their invocations, and tries to capture the call graph. However, once a costly function is identified, you still need to look inside it for the lines that are responsible for the time. If there were stack samples you would not need to look, those lines would be on the samples.</p></li> <li><p><em>that the call graph is important.</em><br> Once you know a function is costly, the call graph tells where it is called from (and to). This should help you find out <strong>why</strong> the code is being used, so you can find a better way to do the same thing. If you had stack samples, each line of code on a stack sample gives you one link in the chain of reasoning of why something is happening, so you can read the <strong>why</strong> right off of each sample.</p></li> <li><p><em>that recursion is a tricky confusing issue.</em><br> It is only perceived as such because <strong>gprof</strong> and other profilers perceive a need to generate a call-graph and then attribute times to the nodes. If one has samples of the stack, the time-cost of each line of code that appears on samples is a very simple number - the fraction of samples it is on. If there is recursion, then a given line can appear more than once on a sample. No matter, the time slice represented by the sample is being spent <strong>because the line is on it</strong>, regardless of how many times it is on it.</p></li> <li><p><em>that accuracy of time measurement (and therefore a large number of samples) is important.</em><br> Think about it for a second. If a line of code is on 3 samples out of five, then if you could shoot it out like a light bulb, that is roughly 60% less time that would be used. Now if you had taken a different 5 samples, you might have only seen it 2 times, or as many as 4, you would guess that it is costing somewhere between 40% and 80%. If it were only costing 40%, would you say it is not worth fixing? So what's the point of accuracy, when what you really want to is <strong>find the problems</strong>?</p></li> <li><p><em>that counting of statement or function invocations is useful.</em><br> Suppose you know a function has been called 1000 times. Can you tell from that what fraction of time it costs? You also need to know how long it takes to run, on average, multiply it by the count, and divide by the total time. The average invocation time could vary from nanoseconds to seconds, so the count alone doesn't tell much. If there are stack samples, the cost of a routine or of any statement is just the fraction of samples it is on. That fraction of time is what could in principle be saved overall if the routine or statement could be made to take no time, so that is what has the most direct relationship to performance.</p></li> </ul> <p>Sorry. I could keep going, but I'll stop there.</p> http://stackoverflow.com/questions/1875167/performance-profiling-on-linux/1876431#1876431 1 Answer by Mike Dunlavey for Performance profiling on Linux Mike Dunlavey 2009-12-09T19:59:06Z 2009-12-09T20:04:35Z <p>I recommend taking stackshots, for which <strong>pstack</strong> is useful. Here's some more information:</p> <ol> <li><p><a href="http://stackoverflow.com/questions/1777556/alternatives-to-gprof/1779343#1779343">Comments on <strong>gprof</strong>.</a></p></li> <li><p><a href="http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/378024#378024">How stackshots work.</a></p></li> <li><p><a href="http://stackoverflow.com/questions/926266/performance-optimization-strategies-of-last-resort/927773#927773">A blow-by-blow example.</a></p></li> <li><p><a href="http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1562802#1562802">A very short explanation.</a></p></li> </ol> <p>If you want to spend money, <a href="http://www.rotateright.com/" rel="nofollow">Zoom</a> looks like a pretty good tool.</p> http://stackoverflow.com/questions/1874814/profiling-a-web-start-application/1876361#1876361 0 Answer by Mike Dunlavey for profiling a web start application Mike Dunlavey 2009-12-09T19:49:42Z 2009-12-09T19:49:42Z <p><a href="http://stackoverflow.com/questions/266373/one-could-use-a-profiler-but-why-not-just-halt-the-program/317160#317160">Here's</a> a quick-and-dirty but simple, free, and effective way. It's language-agnostic, and the way it works is explained <a href="http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/378024#378024">here</a>.</p> http://stackoverflow.com/questions/1870343/performance-and-foreach-loop-in-net/1870802#1870802 0 Answer by Mike Dunlavey for Performance and foreach loop in .NET Mike Dunlavey 2009-12-09T00:14:04Z 2009-12-09T12:38:47Z <p>Performance hit? Can you click buttons 1000 times per second? If so, it <em>might</em> be an issue.</p> http://stackoverflow.com/questions/1867426/modeling-distribution-of-performance-measurements/1867491#1867491 2 Answer by Mike Dunlavey for Modeling distribution of performance measurements Mike Dunlavey 2009-12-08T14:54:25Z 2009-12-08T17:49:04Z <p>Often when you have a random value that can only be positive, a log-normal distribution is a good way to model it. That is, you take the log of each measurement, and assume that is normally distributed.</p> <p>If you want, you can consider that to have multiple humps, i.e. to be the sum of two normals having different mean. Those are a bit tricky to estimate the parameters of, because you may have to estimate, for each measurement, its probability of belonging to each hump. That may be more than you want to bother with.</p> <p>Log-normal distributions are very convenient and well-behaved. For example, you don't deal with its average, you deal with it's geometric mean, which is the same as its median.</p> <p>BTW, in pharmacometric modeling, log-normal distributions are ubiquitous, modeling such things as blood volume, absorption and elimination rates, body mass, etc.</p> <p>ADDED: If you want what you call a floating distribution, that's called an empirical or non-parametric distribution. To model that, typically you save the measurements in a sorted array. Then it's easy to pick off the percentiles. For example the median is the "middle number". If you have too many measurements to save, you can go to some kind of binning after you have enough measurements to get the general shape.</p> <p>ADDED: There's an easy way to tell if a distribution is normal (or log-normal). Take the logs of the measurements and put them in a sorted array. Then generate a QQ plot (quantile-quantile). To do that, generate as many normal random numbers as you have samples, and sort them. Then just plot the points, where X is the normal distribution point, and Y is the log-sample point. The results should be a straight line. (A really simple way to generate a normal random number is to just add together 12 uniform random numbers in the range +/- 0.5.)</p> http://stackoverflow.com/questions/1863703/what-are-the-most-efficient-idioms-for-streaming-data-from-disk-with-constant-spa/1867109#1867109 0 Answer by Mike Dunlavey for What are the most efficient idioms for streaming data from disk with constant space usage? Mike Dunlavey 2009-12-08T13:52:26Z 2009-12-08T13:52:26Z <p>mjv is right. You can use double-buffers and overlapped I/O. That way your crunching and the disk reading can be happening at the same time. Then I would profile or stack-shot the crunching to make it as fast as possible. With luck it will be faster than the I/O, so you will end up running the I/O at top speed without pause. Then things like file fragmentation come into the picture.</p> http://stackoverflow.com/questions/1866316/assembly-language-compiled-languages/1867032#1867032 1 Answer by Mike Dunlavey for Assembly Language & Compiled Languages Mike Dunlavey 2009-12-08T13:38:55Z 2009-12-08T13:38:55Z <p>All good answers. My only additional point is that programmers tend to write a certain number of lines of code per day, regardless of language. Since the advantage of a high-level language is that it lets you get more done with less code, it takes incredible programmer discipline to actually <em>write less code</em>.</p> <p>This is especially an issue for performance because it <em>matters almost nowhere</em> except in a tiny part of the code. It only matters in your hotspots - code that you write (1) consuming a significant fraction of execution time (2) without calling functions (3).</p> http://stackoverflow.com/questions/1850191/profiling-mnesia-queries/1864353#1864353 2 Answer by Mike Dunlavey for Profiling Mnesia Queries Mike Dunlavey 2009-12-08T03:18:57Z 2009-12-08T13:14:11Z <p>I hung back because I don't know much about either Erlang or Mnesia, but I know a lot about performance tuning, and from the discussion so far it sounds pretty typical.</p> <p>These tools <code>fprof</code> etc. sound like most tools that get their fundamental approach from <code>gprof</code>, namely instrumenting functions, counting invocations, sampling the program counter, etc. Few people have <a href="http://stackoverflow.com/questions/1777556/alternatives-to-gprof/1779343#1779343">examined the foundations</a> of that practice for a long time. Your frustrations sound typical for users of tools like that.</p> <p>There's a method that is less-known that you might consider, <a href="http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/378024#378024">outlined here</a>. It is based on taking a small number (10-20) of samples of the state of the program at random times, and understanding each one, rather than summarizing. Typically, this means examining the call stack, but you may want to examine other information as well. There are different ways to do this, but I just use the pause button in a debugger. I'm not trying to get precise timing or invocation counts. Those are indirect clues at best. Instead I ask of each sample <em>"What is it doing and why?"</em> If I find that it is doing some particular activity, such as performing the X query where it's looking for y type answer for the purpose z, and it's doing it on more than one sample, then the fraction of samples it's doing it on is a rough but reliable estimate of what fraction of the time it is doing that. Chances are good that it is something I can do something about, and get a good speedup.</p> <p><a href="http://stackoverflow.com/questions/926266/performance-optimization-strategies-of-last-resort/927773#927773">Here's a case study of the use of the method.</a></p> http://stackoverflow.com/questions/1859123/c-cli-performance-gain/1860184#1860184 1 Answer by Mike Dunlavey for C++/CLI performance gain Mike Dunlavey 2009-12-07T14:06:46Z 2009-12-07T22:38:43Z <p>I'm a performance freak too, and I've learned that</p> <ol> <li><p>This kind of question is not something I even ask until I know where the performance problems are,</p></li> <li><p>Once I do know where they are, I don't need to ask, because I can easily find out, because a) all compiled languages generate assembly or intermediate language that I can look at, and b) I can run it 10^6 times and just clock it.</p></li> </ol> <p>My experience is there are multiple performance problems, having a range of sizes. First I fix the ones that are easiest / biggest. That makes the rest of them take a larger percent of the time so they are easier to find on the next pass.**</p> <p><a href="http://stackoverflow.com/questions/926266/performance-optimization-strategies-of-last-resort/927773#927773">I keep doing tuning passes until I run out of performance problems I can fix.</a> By that time the code can be way faster than it was to begin with.</p> <p>** Example: Suppose the program takes 10 seconds. Suppose there are two problems (you don't know till you look) and they take 50% and 30%, respectively. You fix the first one, and time drops to 5 seconds. Now the second problem is consuming 60%, because the total time has decreased, so it is much easier to spot. Fix it and time drops to 2 seconds - a 5x speedup. The more problems there are, the more dramatic the possible speedup. One may doubt that they have such large problems, and if so, sampling will prove or disprove it.</p> http://stackoverflow.com/questions/1855839/what-is-the-most-efficient-way-to-do-look-up-table-in-c/1856850#1856850 0 Answer by Mike Dunlavey for What is the most efficient way to do look-up table in C# Mike Dunlavey 2009-12-06T22:28:46Z 2009-12-06T22:28:46Z <p>Your question seems to imply that the query key is an integer. Since you have at most 256 items, then the query key is in the range 0..255, right? If so, just have a string array of 256 strings, and use the key as an index into the array.</p> <p>If your query key is a string value, then it's more like a real lookup table. Using a Dictionary object is simple, but if you're after raw speed for a set of as few as 50 or so actual answers, a do-it-yourself approach such as binary search, or a trie, could be quicker. If you use binary search, since the number of items is so small, you could unroll it.</p> <p>How often does the list of items change? If it only changes very seldom, you can get even better speed by generating code to do the search, which you can then compile and execute to do each query.</p> <p>On the other hand, I assume you've proven that this lookup is your bottleneck, either by profiling or <a href="http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/378024#378024">taking stackshots</a>. If less than 10% of time-when-slow is spent in this query, then it is <strong>not</strong> your bottleneck so you may as well do the thing that is easiest to code.</p> http://stackoverflow.com/questions/1854248/wpf-sluggish-rendering-animation-performance/1856766#1856766 0 Answer by Mike Dunlavey for WPF sluggish rendering/animation performance? Mike Dunlavey 2009-12-06T22:02:20Z 2009-12-06T22:07:56Z <p>Here's how I handle a situation like that. Don't try to move the visible lines individually, just repaint the whole collection, but <strong>paint it to a bitmap</strong>, and then block-transfer that to the visible window.</p> <p>If you repaint 1000 lines directly to the visible window, it could take 10-100 ms, and you will probably see flashing. But if you paint to a memory bitmap, it will probably take about the same amount of time, but it will not visibly flash, because the block-transfer to the screen is so fast.</p> http://stackoverflow.com/questions/1853309/appending-in-c-failing-simply-overwriting/1853340#1853340 0 Answer by Mike Dunlavey for appending in C failing, simply overwriting Mike Dunlavey 2009-12-05T20:21:33Z 2009-12-05T20:21:33Z <p>Don't use <code>sizeof</code>, use <code>strlen</code>. sizeof is 10, so you're writing "abc\0\0\0\0\0\0\0".</p> http://stackoverflow.com/questions/1828160/javascript-run-time-analysis/1852155#1852155 0 Answer by Mike Dunlavey for Javascript run-time analysis Mike Dunlavey 2009-12-05T13:02:54Z 2009-12-05T13:02:54Z <p>Can you <a href="http://stackoverflow.com/questions/266373/one-could-use-a-profiler-but-why-not-just-halt-the-program/317160#317160">try this</a>? It's a method that doesn't measure, it just tells what's costing the most time, as well as giving a good idea of what's happening time-wise.</p> http://stackoverflow.com/questions/214452/what-surprised-you-the-most-about-the-software-industry/1435966#1435966 1 Answer by Mike Dunlavey for What surprised you the most about the software industry? Mike Dunlavey 2009-09-16T23:04:05Z 2009-12-05T00:19:41Z <p>Academia is an echo chamber. What echoes back and forth is what is currently popular on the conference circuit, and it forms a positive feedback loop that always seeks the latest bandwagon.</p> <p>In the real world, there's a whole new thing, <em>concrete reality</em>, that dominates.</p> <p>You can see this in the way academics vs. practitioners discuss things. Academics get hot under the collar and form competing schools of thought because what they're really after is wooing editors to publish their papers so they can get prestige and hopefully some job security. Practitioners, on the other hand, tend to be more calm and pragmatic (and no less intelligent) and while they may disagree, the ultimate arbiter is whether they can get problems solved.</p> <p>Another difference I noticed is that in academia, "smartness" is valued. How often do you hear "Prof. X is really smart", and that forms sort of a currency. In the real world, it is more important to be pragmatic and a team-player.</p> http://stackoverflow.com/questions/1846512/automatic-application-generator/1847482#1847482 1 Answer by Mike Dunlavey for Automatic Application Generator Mike Dunlavey 2009-12-04T14:58:05Z 2009-12-04T15:22:30Z <p>This is like the old saw: If you had a large number of monkeys typing for a sufficiently long time, they would eventually produce the works of Shakespeare.</p> <p>That's the good news. The bad news is they would also produce every possible misspelling of the works of Shakespeare, including those written backwards, or with every beautiful word replaced by a vulgar word, and even that would be a negligible fraction of all the other stuff they would produce.</p> <p>Unless, you only had one monkey, Shakespeare himself.</p> http://stackoverflow.com/questions/1845733/profiling-java-ee1-5-or-se1-6/1847203#1847203 0 Answer by Mike Dunlavey for Profiling Java EE1.5 or SE1.6 Mike Dunlavey 2009-12-04T14:16:17Z 2009-12-04T14:16:17Z <p>There's a <a href="http://stackoverflow.com/questions/266373/one-could-use-a-profiler-but-why-not-just-halt-the-program/317160#317160">"quick and dirty" but effective</a> way to find performance problems in Java. <a href="http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/378024#378024">This</a> is a language-agnostic explanation of why it works.</p> http://stackoverflow.com/questions/1842472/traversing-a-binary-tree-with-multiple-threads/1843329#1843329 0 Answer by Mike Dunlavey for Traversing a Binary Tree with multiple threads Mike Dunlavey 2009-12-03T22:12:25Z 2009-12-03T22:48:37Z <p>I've got a dumb question: since you're reading and modifying a file, you're going to be totally limited by how fast the read/write head can move around and the disk can rotate. So what good is it to use threads and processors? The disc can't do two things at once.</p> <p>Or is this all in RAM?</p> <p>ADDED: OK, It's not clear to me how much parallelism can help you here (some, maybe), but regardless, what I would suggest is squeezing every cycle out of each thread that you can. <a href="http://stackoverflow.com/questions/926266/performance-optimization-strategies-of-last-resort/927773#927773">This is what I'm talking about.</a> For example, I wonder if innocent-looking sleeper code like those calls to "get" and "compare" methods are taking a more of a % of time than you might expect. If they are, you might be able to do each of them once rather than 2 or 3 times - that sort of thing.</p> http://stackoverflow.com/questions/922475/using-gprof-with-pthreads/1840689#1840689 0 Answer by Mike Dunlavey for Using gprof with pthreads Mike Dunlavey 2009-12-03T15:34:59Z 2009-12-03T15:34:59Z <p>Have you considered <a href="http://stackoverflow.com/questions/1834103/ways-to-corner-a-stickiness-bug/1834447#1834447"><strong>pstack</strong></a>? It works fine with multiple threads, and it is good for finding performance problems by the stackshot method. <a href="http://stackoverflow.com/questions/1777556/alternatives-to-gprof/1779343#1779343"><strong>gprof</strong></a> is what it is, but chances are you can do better.</p> http://stackoverflow.com/questions/1839309/how-to-track-the-net-framework-methods-in-call-tree-when-profiling-in-visual-s/1839728#1839728 0 Answer by Mike Dunlavey for How to track the .net framework methods in "Call Tree" when profiling in Visual Studio Mike Dunlavey 2009-12-03T13:02:44Z 2009-12-03T13:08:43Z <p>I do have to ask what is your purpose. Are you trying to find and remove performance problems? If so, any fixes you make can only be in your code. A simple way to find them is to run the program under the IDE and, while it is being slow, pause it and record the call stack. Do this several times. If there is any line of code that appears on multiple samples, those samples are occurring within work being requested by it, so if you can find a way to avoid doing that line of code, you will save a large fraction of time. The call tree may show such a line, but to see how much time it saves, you have to sum over all the branches in the tree where it occurs. You don't have that problem if you just sample the stack.</p> <p><a href="http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/378024#378024">Here's a more complete explanation.</a></p> <p><a href="http://stackoverflow.com/questions/926266/performance-optimization-strategies-of-last-resort/927773#927773">Here's a blow-by-blow example.</a></p> <p><a href="http://stackoverflow.com/questions/1777556/alternatives-to-gprof/1779343#1779343">There are some myths re. performance tuning.</a></p> http://stackoverflow.com/questions/1838989/gprof-how-to-generate-call-graph-for-functions-in-shared-library-that-is-linked/1839678#1839678 1 Answer by Mike Dunlavey for gprof : How to generate call graph for functions in shared library that is linked to main program Mike Dunlavey 2009-12-03T12:48:07Z 2009-12-03T12:48:07Z <p>Do you just want a call graph? Or are you trying to find performance problems? If the latter, <a href="http://stackoverflow.com/questions/1777556/alternatives-to-gprof/1779343#1779343">consider this link</a>.</p> http://stackoverflow.com/questions/1625608/looking-for-scientific-evidence-of-the-benefits-of-using-a-dsl/1836052#1836052 1 Answer by Mike Dunlavey for looking for scientific evidence of the benefits of using a DSL Mike Dunlavey 2009-12-02T21:48:36Z 2009-12-03T01:14:15Z <p>This is a sensible question, and I think there are definitional problems, such as "what is a DSL"? When a buzword becomes "hot" it becomes a marketing opportunity and gets divorced from underlying science, if there is any.</p> <p>Some years ago, I wrote a book (Building Better Applications, ISBN 0-442-01740-5, long out of print) where I tried to look into performance, not only of programs, but of programmers. I tried to look at it using information theory.</p> <p>I came up with a crude measure of maintainability, where a problem exists as a knowledge structure in somebody's head (no problem for an AI guy to say so), and its solution exists as a textual structure processed by a machine. What I look at is the relationship between these two structures. For example, if a change occurs in the mental problem description, how many source code changes are required to transfer that to the program text correctly? A simple way to measure that is to diff the code between before and after. Now, average that measure over the space of changes that are likely, and the lower the average is, the more maintainable is the source code.</p> <p>My thesis was that the more maintainable code is, by that measure, the more it comes to resemble the mental model of the domain, so it is reasonable to call it more "problem-oriented" or more "domain-specific". One characteristic I noticed of such code is that it tends to be more a <em>statement</em> of the problem, rather than a <em>solution</em> of the problem. The solution lies not in the language, but in the implementation of the language, the sub-structure. This is an echo, though not a direct agreement, with the concept of "declarative" vs. "imperative" language.</p> <p>So in trying to answer your question, I would say let's get away from what people might want "DSL" to mean and instead look at a definition that's at least moderately unambiguous.</p> <p>As part of developing that idea, I had stumbled on a number of techniques, one of which is <a href="http://stackoverflow.com/questions/371898/how-does-differential-execution-work">Differential Execution</a>, which seems to give good maintainability for coding UIs, and also reduces source code size by roughly an order of magnitude. My theory is that that's a successful example of what a DSL might be.</p> <p>I do not claim that maintainability can be achieved without the maintainer having to climb a learning curve. I think real maintainability comes at a price of programmers having to learn things that might not be easy to grasp, but once grasped have the desired value.</p> http://stackoverflow.com/questions/1834103/ways-to-corner-a-stickiness-bug/1834447#1834447 2 Answer by Mike Dunlavey for Ways to corner a stickiness bug Mike Dunlavey 2009-12-02T17:20:43Z 2009-12-02T22:24:10Z <p><a href="http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/378024#378024">This technique</a> should find it. Basically, while it's spending time like that, there's almost always a hierarchy of function calls on the stack waiting for their work to be completed. Just sample the stack a few times and you'll see them.</p> <p>ADDED: As Don Wakefield pointed out, the <strong>pstack</strong> utility could be perfect for this job.</p> http://stackoverflow.com/questions/406760/whats-your-most-controversial-programming-opinion/1562802#1562802 4 Answer by Mike Dunlavey for What's your most controversial programming opinion? Mike Dunlavey 2009-10-13T20:42:54Z 2009-12-02T14:22:02Z <p>My most controversial programming opinion is that <strong>finding performance problems is not about <em>measuring</em>, it is about <em>capturing</em></strong>. The idea of measurement has been common wisdom at least since the paper on <strong>gprof</strong> (Susan L. Graham, et al 1982), when all along, right under our noses, has been a <a href="http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/378024#378024">very simple and direct way to find performance problems</a>.</p> <p>As a small example, here's how it works. Suppose you take 5 random-time samples of the call stack, and you happen to see a particular instruction on 3 out of 5 samples. What does that tell you?</p> <pre><code>............. ............. ............. ............. ............. ............. ............. ............. ............. ............. Foo: call Bar ............. ............. Foo: call Bar ............. ............. Foo: call Bar ............. ............. ............. ............. ............. ............. Foo: call Bar ............. ............. ............. ............. ............. ............. ............. ............. </code></pre> <p><em>It tells you the instruction costs 60%, because that's the fraction of time it is <strong>doing work requested by that instruction</em></strong>. Removing it removes that time:</p> <pre><code>...\...../... ...\...../... ............. ...\...../... ............. ....\.../.... ....\.../.... ............. ....\.../.... ............. Foo: \a/l Bar .....\./..... ............. Foo: \a/l Bar ............. ......X...... Foo: cXll Bar ............. ......X...... ............. ...../.\..... ...../.\..... ............. Foo: /a\l Bar ............. ..../...\.... ..../...\.... ............. ..../...\.... ............. / \ .../.....\... / \ ............. </code></pre> <p>Roughly.</p> <p>If you can remove it (or invoke it a lot less), that's a 2.5x speedup, approximately. (Notice - recursion is irrelevant.)</p> <ul> <li>This did not require accuracy of measurement, function timing, call counting, graphs, hundreds of samples, <em>any of that typical profiling stuff.</em></li> </ul> <p>Some people use this whenever they have a performance problem, and don't understand what's the big deal.</p> <p>Most people have never heard of it, and when they do hear of it, some have trouble understanding it, because the whole vocabulary of measuring, functions, call graphs, hotspots, and bottlenecks is deeply entrenched.</p> <p>So I guess that means it's controversial.</p> <p><hr></p> <p>My second most controversial opinion is <a href="http://stackoverflow.com/questions/371898/how-does-differential-execution-work"><strong>this</strong></a>, or it might be if it weren't so hard to understand.</p> http://stackoverflow.com/questions/1832489/printf-slows-down-my-program/1832895#1832895 0 Answer by Mike Dunlavey for printf slows down my program Mike Dunlavey 2009-12-02T13:26:18Z 2009-12-02T13:26:18Z <p>I discovered long ago <a href="http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/378024#378024">using this technique</a> something that should have been obvious. Not only is I/O slow, especially to the console, but formatting decimal numbers is not fast either. If you can put the numbers in binary into big buffers, and write those to a file, you'll find it's a lot faster.</p> <p>Besides, who's going to read them? There's no point printing them all in a human-readable format if nobody needs to read all of them.</p> http://stackoverflow.com/questions/1831888/how-to-efficiently-track-the-use-of-space-on-a-map-both-objects-and-free-areas/1832826#1832826 0 Answer by Mike Dunlavey for how to efficiently track the use of space on a map, both objects and free areas. Mike Dunlavey 2009-12-02T13:14:29Z 2009-12-02T13:14:29Z <p>The first thing that comes to mind is to use polygon-filling techniques. Consider your space as a set of scan lines, one scan line per Y coordinate. On each scan line, store a list of X coordinates representing transitions between free and occupied space.</p> http://stackoverflow.com/questions/1624725/is-it-ok-to-learn-computer-science-programming-concepts-on-your-own-outside-of-th/1829716#1829716 0 Answer by Mike Dunlavey for Is it ok to learn computer science/programming concepts on your own outside of those being learned in class? Mike Dunlavey 2009-12-01T23:36:44Z 2009-12-01T23:36:44Z <p>Never shy away from self-learning. Just don't let it go to your head.</p> <p>When I was a C.S. professor, I taught 700-800 students intro programming. Many of them had programming in high school.</p> <p>What they had had in high school kept them ahead of the class for about 6 weeks, during which time they kind of loafed along.</p> <p>Then, when the class material caught up to them and surpassed them, they were caught off guard, not knowing how to address the material.</p> <p>The other students, who had not had programming in high school, had learned how to work hard to understand each new concept, and knew how to get help and pace themselves.</p> <p>So ultimately, the students who had prior programming experience found the class a struggle, and some dropped out.</p> <p>Make sure that doesn't happen to you. Even if you already know some of the material, behave as if you are learning it fresh.</p> http://stackoverflow.com/questions/1827406/how-much-does-the-order-of-case-labels-affect-the-efficiency-of-switch-statements/1828545#1828545 1 Answer by Mike Dunlavey for How much does the order of case labels affect the efficiency of switch statements? Mike Dunlavey 2009-12-01T20:06:40Z 2009-12-01T20:06:40Z <p>I assume you're aware that it will only matter if this is a hotspot. The best way to tell if it's a hotspot is to run the code, sample the program counter, and see if it's in there more than 10% of the time. If it is a hotspot, see how much time is spent in doing the <code>if</code> or <code>switch</code>. Usually it is negligible, unless your <code>Block 1</code> and/or <code>Block 2</code> do almost <em>nothing</em>. You can use a profiler for this. I just pause it repeatedly.</p> <p>If you're not familiar with assembly language I would suggest learning it, enough to understand what the compiler generates. It's interesting and not hard.</p> http://stackoverflow.com/questions/485649/confusing-gprof-output/1786067#1786067 0 Answer by Mike Dunlavey for Confusing gprof output Mike Dunlavey 2009-11-23T21:22:04Z 2009-12-01T18:30:09Z <p>You're experiencing a problem common to <strong>gprof</strong> and other profilers based on the same concepts - 1) sample the program counter to get some kind of histogram, 2) instrument the functions to measure times, counts, and get a call graph.</p> <p>For actually locating performance problems, they are missing the point.<br> It's not about measuring routines, it's about finding guilty code.</p> <p>Suppose you have a sampler that stroboscopically X-rays the program at random wall-clock times. In each sample, the program may be in the middle of I/O, it may be in code that you compiled, it may be in some library routine like <strong>malloc</strong>.</p> <p>But no matter where it is, <a href="http://stackoverflow.com/questions/1777556/alternatives-to-gprof/1779343#1779343">the responsibility for it spending that slice of time is jointly shared by every line of code on the call stack</a>, because if any one of those calls had not been made, it would not be in the process of carrying out the work requested by that call.</p> <p>So look at every line of code that shows up on multiple samples of the call stack (the more samples it is on, the better). That's where the money is. Don't just look where the program counter is. There are "deep pockets" higher up the stack.</p> http://stackoverflow.com/questions/477225/is-stdifstream-significantly-slower-than-file/1827678#1827678 0 Answer by Mike Dunlavey for Is std::ifstream significantly slower than FILE? Mike Dunlavey 2009-12-01T17:26:25Z 2009-12-01T17:26:25Z <p><a href="http://stackoverflow.com/questions/485649/confusing-gprof-output/1786067#1786067">Long live <strong>gprof</strong>, as a museum piece.</a></p> http://stackoverflow.com/questions/1877823/most-efficient-tree-structure-for-what-im-trying-to-do Comment by Mike Dunlavey on Most efficient tree structure for what I'm trying to do Mike Dunlavey 2009-12-10T13:27:06Z 2009-12-10T13:27:06Z @Anon: If it's a binary tree with lookup by ID, then it simply <i>is</i> ordered. http://stackoverflow.com/questions/1879475/speed-of-programming-languages-then-and-now Comment by Mike Dunlavey on Speed of programming languages then and now. Mike Dunlavey 2009-12-10T13:17:14Z 2009-12-10T13:17:14Z @hacker: I think when a lot of people make fun of a language, that's evidence that it has &quot;arrived&quot;. http://stackoverflow.com/questions/1879475/speed-of-programming-languages-then-and-now Comment by Mike Dunlavey on Speed of programming languages then and now. Mike Dunlavey 2009-12-10T13:14:28Z 2009-12-10T13:14:28Z You want benchmarks? It's a squishy question. Pick a benchmark, and some assembly-language generators will do slightly better or worse than others. Change the benchmark, and the results will be reversed. Java/.net is two steps removed from assembler, so it's harder to tell. You need to understand the issues better. http://stackoverflow.com/questions/1867426/modeling-distribution-of-performance-measurements Comment by Mike Dunlavey on Modeling distribution of performance measurements Mike Dunlavey 2009-12-09T17:18:55Z 2009-12-09T17:18:55Z @peterchen: An alternative to the median is the geometric mean <code>exp(Average(log(X))</code>. For that you don't need all samples. If the distribution is log-normal, it is the same as the median. http://stackoverflow.com/questions/375913/what-can-i-use-to-profile-c-code-in-linux/1864072#1864072 Comment by Mike Dunlavey on What can I use to profile C++ code in Linux? Mike Dunlavey 2009-12-09T15:54:12Z 2009-12-09T15:54:12Z ** I'm a profiler-skeptic, but I have to admit, Zoom seems to be on the right track. I would have them butterfly lines of code, rather than routines, and get rid of the &quot;Self&quot; column. They should let you pick particular stack traces to look at. And, they take about 1000 times more samples than necessary. But they are on what I think is the right track (after all these years of gprof-ism). http://stackoverflow.com/questions/1683461/generating-a-gaussian-distribution-with-only-positive-numbers/1683707#1683707 Comment by Mike Dunlavey on Generating a gaussian distribution with only positive numbers Mike Dunlavey 2009-12-08T21:16:14Z 2009-12-08T21:16:14Z ++ Simplest way to do this is 1) take the log of each original data point, 2) get the mean and sigma of that, 3) generate gaussian normal random numbers with that mean and sigma, and 4) take exp of each number. The results should be similar to what you started with. (To generate a gaussian random number, a simple way is to add up 12 uniform random numbers in the range +/- 0.5.) http://stackoverflow.com/questions/1867426/modeling-distribution-of-performance-measurements Comment by Mike Dunlavey on Modeling distribution of performance measurements Mike Dunlavey 2009-12-08T21:08:06Z 2009-12-08T21:08:06Z @peterchen: for skewed distributions, people sometimes say what the average is, but they really shouldn't. The median is more meaningful. The average is skewed to the right because of the long tails that you mentioned. http://stackoverflow.com/questions/1850191/profiling-mnesia-queries/1864353#1864353 Comment by Mike Dunlavey on Profiling Mnesia Queries Mike Dunlavey 2009-12-08T17:17:51Z 2009-12-08T17:17:51Z ... The basic idea is if a slice of time is being spent, then the state of the call stack (&amp; possibly other data as well) tells you as much as you could care to know about why that time is being spent, including the hierarchy of function calls that requested it. http://stackoverflow.com/questions/1850191/profiling-mnesia-queries/1864353#1864353 Comment by Mike Dunlavey on Profiling Mnesia Queries Mike Dunlavey 2009-12-08T17:08:28Z 2009-12-08T17:08:28Z @Gordon: I look for a debugger with a pause or ctrl-break button. There are tools like <code>pstack</code> that let you get stackshots from outside. There are profiling tools that sample the call stack, but they don't necessarily do it in a useful way, i.e. sampling on wall-clock time, and letting you analyze individual representative samples. http://stackoverflow.com/questions/1867426/modeling-distribution-of-performance-measurements/1867491#1867491 Comment by Mike Dunlavey on Modeling distribution of performance measurements Mike Dunlavey 2009-12-08T16:38:46Z 2009-12-08T16:38:46Z @peterchen: let me know how it works. http://stackoverflow.com/questions/1867426/modeling-distribution-of-performance-measurements Comment by Mike Dunlavey on Modeling distribution of performance measurements Mike Dunlavey 2009-12-08T15:26:29Z 2009-12-08T15:26:29Z @Scottie T: Happy flying in that 172! http://stackoverflow.com/questions/1853309/appending-in-c-failing-simply-overwriting/1853340#1853340 Comment by Mike Dunlavey on appending in C failing, simply overwriting Mike Dunlavey 2009-12-06T00:13:00Z 2009-12-06T00:13:00Z @SiegeX: You're right. http://stackoverflow.com/questions/1382093/teaching-my-13-year-old-girl-to-program Comment by Mike Dunlavey on Teaching my 13 year old girl to program Mike Dunlavey 2009-12-05T01:03:06Z 2009-12-05T01:03:06Z ... not so much to set them on a career path, as to give them enjoyment and satisfaction at being able to build things, learn from mistakes, and see it work. http://stackoverflow.com/questions/1382093/teaching-my-13-year-old-girl-to-program Comment by Mike Dunlavey on Teaching my 13 year old girl to program Mike Dunlavey 2009-12-05T01:01:39Z 2009-12-05T01:01:39Z Since it's closed, I'll answer here. I taught 7-800 college students Basic, and as soon as I gave then a useful set of skills I got them into projects of their own: family banking system, games (football, baseball, adventure, hangman), playing music, sailboat racing strategy, Life, genetics simulation... I just threw out some ideas and they took it from there. Then I just helped out when they needed help. Anything to encourage a youngster is great. http://stackoverflow.com/questions/1848035/on-the-design-of-zero-copy-memory-allocators-used-in-high-volume-fast-path-code Comment by Mike Dunlavey on On the Design of zero-copy Memory allocators used in high volume fast-path code. Mike Dunlavey 2009-12-05T00:53:12Z 2009-12-05T00:53:12Z @Vainstah: I think you're right to stick to C. There's nothing C++ can do that C can't do. (BTW MSVC has a nice pause button for getting stackshots.)