www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - Tool to measure the time a function takes to execute?

reply Kirill <kirill.saidov mail.com> writes:
Hello, is there a tool to measure the execution time of a 
function in D? Can the GC do it?
Dec 27 2020
parent reply =?UTF-8?Q?Ali_=c3=87ehreli?= <acehreli yahoo.com> writes:
On 12/27/20 10:24 PM, Kirill wrote:
 Hello, is there a tool to measure the execution time of a function in D? 
 Can the GC do it?
StopWatch and benchmark(): https://dlang.org/phobos/std_datetime.html Ali
Dec 27 2020
parent Kirill <kirill.saidov mail.com> writes:
On Monday, 28 December 2020 at 07:00:59 UTC, Ali Çehreli wrote:
 On 12/27/20 10:24 PM, Kirill wrote:
 Hello, is there a tool to measure the execution time of a 
 function in D? Can the GC do it?
StopWatch and benchmark(): https://dlang.org/phobos/std_datetime.html Ali
Thanks Ali! That's exactly what I needed.
Dec 27 2020