www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Profiling

reply "js.mdnq" <js_adddot+mdng gmail.com> writes:
Is there a standard library that makes profiling easy and 
accurate?

e.g.,

profile.start();
...
writeln(profile.end());

where profile.end() can has some nicely printed string to 
output(like xxm xxs xxms)?
Dec 07 2012
next sibling parent "Jonathan M Davis" <jmdavisProg gmx.com> writes:
On Friday, December 07, 2012 19:49:30 js.mdnq wrote:
 Is there a standard library that makes profiling easy and
 accurate?
 
 e.g.,
 
 profile.start();
 ...
 writeln(profile.end());
 
 where profile.end() can has some nicely printed string to
 output(like xxm xxs xxms)?
The compiler has a -profile switch. - Jonathan M Davis
Dec 07 2012
prev sibling parent "Adam D. Ruppe" <destructionator gmail.com> writes:
these might be useful too

http://dlang.org/phobos/std_datetime.html#benchmark

http://dlang.org/phobos/std_datetime.html#StopWatch
Dec 07 2012