Convert CPU cycles into seconds in C programming

8.2k Views Asked by At

I was trying to figure out if there is any easy method to convert the CPU cycles obtained in C using rdtsc() function into time in seconds.

ex:-

unsigned long long start, stop;

start = rdtsc();
stop = rdtsc();

printf(" CPU CYCLES: %llu\n", b-a);

is there any possible way to convert this into time in seconds?

0

There are 0 best solutions below