Return to Snippet

Revision: 56037
at March 7, 2012 11:35 by inky76


Initial Code
struct timeval start, end, delta;
assert(gettimeofday(&start, NULL) != -1);

// LAPS should be huge (about a million, probably)
for (int i = 0; i < LAPS; i++)
	test_function();
	
assert(gettimeofday(&end, NULL) != -1);
timersub(&end, &start, &delta);
uint64_t delta_ns = (delta.tv_sec * NSEC_PER_SEC + delta.tv_usec * NSEC_PER_USEC) / LAPS;

Initial URL


Initial Description


Initial Title
How to measure time of execution

Initial Tags
Development

Initial Language
C