pippi Posted November 8, 2006 Posted November 8, 2006 Hello, i am developing a script where it is important that it executes as fast as possible. So i am compareing different solutions at the moment, but i dont know how to measure exactly how fast my function is. What is the best way to do it? Regards, pippi
PaulIA Posted November 8, 2006 Posted November 8, 2006 Hello,i am developing a script where it is important that it executes as fast as possible. So i am compareing different solutions at the moment, but i dont know how to measure exactly how fast my function is. What is the best way to do it?Regards,pippi1. At the start of the function, get the current time.2. At the end of the function, get the current time.3. Subtract the two. Auto3Lib: A library of over 1200 functions for AutoIt
jpm Posted November 8, 2006 Posted November 8, 2006 Hello, i am developing a script where it is important that it executes as fast as possible. So i am compareing different solutions at the moment, but i dont know how to measure exactly how fast my function is. What is the best way to do it? Regards, pippi$start=TimerInit() Func() $elapse=TimerDiff($start)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now