Hi all,
I would like to compare the real efficiency of different scripts. I currently use a timer :
NSDate *start = [NSDate date];
// Do something
NSLog(@"Elapsed : %f",[start timeIntervalSinceNow]);
But it is not relevant since it might depend on the OS working in the background, etc... Does something that really measure the processor cycles needed to execute the script exist ? Or something equivalent ?
Thanks