Mike Dunlavey

6,381
reputation
1151 views

Registered User

name Mike Dunlavey
member for 1 year
seen 4 hours ago
website
location Needham, MA, US
age
BS Mechanical Engr.
PhD CS(AI)
CS Prof (4yr)
Numerous consulting jobs.
10 yr at http://www.pharsight.com
Published book on CS & several articles
4 kids
Pilot(student)
http://www.mdunlavey.blogspot.com/
7h
answered Why is this faster on 64 bit than 32 bit?
15h
comment Profiler able to start profiling when executing some procedure
I just looked up Sampling Profiler. I get the sinking feeling that all it samples is the program counter, not the call stack. The problem with that is this: stackoverflow.com/questions/1777556/…
16h
comment Profiler able to start profiling when executing some procedure
@Edelcom: I couldn't have said it better than you did. Here's an example: stackoverflow.com/questions/926266/…
17h
answered Profiler able to start profiling when executing some procedure
17h
revised C++ Vector vs Array (Time)
deleted 1 characters in body
1d
revised C++ Vector vs Array (Time)
added 238 characters in body
1d
revised C++ Vector vs Array (Time)
added 25 characters in body
1d
revised C++ Vector vs Array (Time)
added 3 characters in body
1d
revised C++ Vector vs Array (Time)
added 2405 characters in body; added 3 characters in body
1d
comment Alternatives to gprof
... Check this out. I think they are nearly on the right track: rotateright.com/zoom.html
1d
comment Alternatives to gprof
... I'm emphasizing call instructions, but it applies to any instructions. If one has an honest-to-goodness hotspot bottleneck, such as a bubble sort of a large array of numbers, then the compare/jump/swap/increment instructions of the inner loop will be at the top/bottom of nearly every stack sample. But (especially as software gets big and hardly any routine has much "self" time) many problems actually are call instructions, requesting work that, when it is clear how much it costs, doesn't really have to be done.
1d
revised Alternatives to gprof
edited body
1d
comment Alternatives to gprof
@Norman: ++ That confusion about recursion seems endemic to systems that have the concept of propogating times among nodes in a graph. Also I think wall-clock time is generally more useful than CPU instruction times, and code lines (call instructions) are more useful than procedures. If stack samples at random wall clock times are taken, then the fractional cost of a line (or procedure, or any other description you can make) is simply estimated by the fraction of samples that exhibit it.
1d
comment C++ Vector vs Array (Time)
... It's the old saw about giving someone a fish versus teaching them to fish.
1d
comment C++ Vector vs Array (Time)
@jalf: Come on. It's independent of OS, and profiling as it's commonly understood may not tell you what's going on, but stackshots will tell you exactly what's going on as long as there's source code of the libraries.
2d
revised How to modify a C program so that gprof can profile it?
added 170 characters in body
2d
answered C++ Vector vs Array (Time)
2d
comment Alternatives to gprof
... You might know Ben Kuipers, who was at Tufts, now Texas & Michigan. He & I were grad students at the MIT AI Lab in the 70s.
2d
comment Alternatives to gprof
... Here's a really short explanation on SO. Unfortunately, when you follow the link to it, if you don't see it, you then have to go to the bottom of the previous page of answers. stackoverflow.com/questions/406760/…
2d
comment Alternatives to gprof
@Norman: I made a profiler based on this, in C for DOS, around '93. I called it yet-another-performance-analyzer, and demo'ed it around at IEEE meetings, but that's as far as it went. There is a product from RotateRight called Zoom that's not too far off. On *nix, pstack is good for doing it manually. My to-do list for work (pharmacometrics on Windows) is about a mile long which precludes fun projects, not to mention family. This might be useful: stackoverflow.com/questions/1777669/…
Dec
18
revised How to modify a C program so that gprof can profile it?
added 102 characters in body; added 13 characters in body
Dec
18
revised How to modify a C program so that gprof can profile it?
added 26 characters in body
Dec
18
revised How to modify a C program so that gprof can profile it?
added 296 characters in body
Dec
18
answered How to modify a C program so that gprof can profile it?
Dec
18
comment C vs C++ code optimization for simple array creation and i/o
... If you're trying to compare speed of iteration, get rid of the print. It's the whale in the bathtub.
Dec
18
comment C vs C++ code optimization for simple array creation and i/o
@Koper: Because of the printf formatting a floating point number, you're not even comparing the performance of the loop. You can't answer this question when you load it down with superfluous unrelated computation.
Dec
18
comment C vs C++ code optimization for simple array creation and i/o
Won't this code be spending nearly all its time formatting the floating point number? Even if the ++i gets poorly optimized, it's going to use a small percentage of the cycles.
Dec
18
revised Optimize color manipulation on XNA
added 137 characters in body
Dec
18
revised Optimize color manipulation on XNA
added 36 characters in body; edited body
Dec
18
revised Optimize color manipulation on XNA
added 295 characters in body; added 2 characters in body
Dec
18
answered Optimize color manipulation on XNA
Dec
18
comment mixing cout and printf for faster output
@Jabba: I bet a lot of people would like to know that.
Dec
17
comment mixing cout and printf for faster output
I suspect the reason cout is slower is that it is flushing after every line. printf flushes only when a buffer fills up or you explicitly flush. Flushes are expensive because they energize the mechanical parts of the disk.
Dec
17
comment Searching for block-count profiling tool with block counts written next to blocks
... Here's a critique of gprof: stackoverflow.com/questions/1777556/…
Dec
16
answered is there a simple compiler for a small language
Dec
16
comment Can I force my own short-circuiting in a method call?
@Jon: Unless I'm mistaken, this is the call-by-name convention of Algol. No?
Dec
16
comment Optimization for division on “extern const int”
++ That is nifty.
Dec
16
comment Optimization for division on “extern const int”
@David: You're right. The slowness of the processor is not stated here, so maybe I didn't make it clear is that what matters is the overall percent of time spent in that division. In general, I don't recommend fixing something until it's known that it's the most time-consuming problem that one can fix. Usually, if there's a problem at all, it's not what one detects by eyeballing the code.
Dec
16
comment Optimization for division on “extern const int”
@Yousf: Let me put it another way. That division should take maybe 10-50 nanoseconds, or maybe a microsecond at most if the CPU is slow. Are you executing it more than 100,000 times a second? If not, you probably have bigger "fish to fry".
Dec
16
comment Optimization for division on “extern const int”
++ I always upvote newbies :)
Dec
16
answered Optimization for division on “extern const int”
Dec
16
comment How can I become good at assembly?
@San: Thx. I used to do a lot of assembler for various platforms, but the only compiler around was Fortran. Besides, when it came to doing graphics, especially on an 8088, you need to get really good at counting cycles.
Dec
15
answered How can I become good at assembly?
Dec
14
answered Using cProfile results with KCacheGrind
Dec
14
comment Profiling Mnesia Queries
@Christian: That's helpful. My theory is that you don't need to know call durations. Rather you need to know what % of time each call is active (what % of stack samples it is on, assuming samples are taken at "random" times) because that tells you what fraction of overall time that call is responsible for, that you could save if you could remove it.
Dec
14
revised Code generation for Java JVM / .NET CLR
deleted 2 characters in body
Dec
14
answered Memory vs. Performance
Dec
14
answered Who invented the throw/try/catch[/finally] kind of error handling?
Dec
14
revised C# *Strange* problem with StopWatch and a foreach loop
added 115 characters in body
Dec
13
answered C# *Strange* problem with StopWatch and a foreach loop