Rodrigo Farias Rezino
Rodrigo Farias Rezino

Reputation: 2799

Benchmark Tools For Delphi

I'm looking for some tools to improve my Delphi development. And a tool that I could not found any free project is a benchmark tool.

Some one have some hit about some project to use ?

Today to check where I must focus my optimizations I use sample profiling, but it's not enough I must file the function that spent more time overage, not just the top called functions.

Tks

Upvotes: 1

Views: 1142

Answers (2)

lkessler
lkessler

Reputation: 20132

Check out my question on Profiler and Memory Analysis Tools for Delphi. In my Addenum 4, I mention André's Open Source Profiler for Delphi called AsmProfiler that he made. See his answer to that question that led me to it.

I had downloaded it and tried it and it is quite good. It is an instrumenting profiler like AQTime, so it may be better than a Sampling Profiler for certain optimizations. It does procedure-based timings, so the one thing it can't do that AQTime is line-by-line based timings. But for a free program that works well, most often procedure-based timings are good enough. I had used GpProfile very productively for many years which was very similar but it is no longer available for current versions of Delphi.

Upvotes: 3

David Heffernan
David Heffernan

Reputation: 613013

I think the acknowledged leader in this field is AQtime.

If you have no money then you can try Sampling Profiler.

I'm sure others will be along in due course to offer yet more suggestions!

Upvotes: 5

Related Questions