I need to calculate the time that a piece of my code takes to execute, right now I am using clock_t like so:

clock_t start = clock();

/* Do something here */

float executionTime = (clock()-(float)start) / CLOCKS_PER_SEC;

This works in the simulator, but when run on the device the value is always lower than what it should be. When running the simulator and my device at the same time the simulator finishes first but when my device finishes it has a shorter execution time.

The only difference between the simulator code and the device code is that a couple of functions are written in ARM assembly for the device.

In case this is relevant im using Xcode 4.1 and iOS 4.3.

link|improve this question

62% accept rate
what value is lower than it should be? if the value is executionTime, it could be CLOCKS_PER_SEC which is off, which isn't unheard of. If it's start that is off, then you know it's clock(). – djhaskin987 Aug 15 '11 at 23:04
executionTime is lower than it should be on the device. If it is CLOCKS_PER_SEC that is off, is it possibly to fix it? – A Person Aug 15 '11 at 23:26
feedback

2 Answers

Have you tried using either gettimeofday(2) or mach_absolute_time() instead?

link|improve this answer
I would prefer to try to get clock() working first but if not I will use these functions. – A Person Aug 15 '11 at 23:27
feedback

It seems that after I rebooted my computer and my device clock() works again. Thanks to everyone that took the time to reply (:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.