Linux Compute program Run time

Source: Internet
Author: User

Turn from:

Http://www.cnblogs.com/NeilHappy/archive/2012/12/08/2808417.html


# include <sys/time.h>
int gettimeofday (struct timeval *tv,struct timezone *tz);
Strut Timeval {
Long tv_sec; /* Number of seconds */
Long tv_usec; /* microsecond number */
};
Gettimeofday Save the time in the structure TV. TZ generally we use NULL instead.

Here are the programs:
#i nclude <sys/time.h>
#i nclude <stdio.h>
#i nclude <math.h>
void function ()
{
unsigned int i,j;
Double y;
for (i=0;i<1000;i++)
for (j=0;j<1000;j++)
Y=sin (double) i);
}
Main ()
{
struct Timeval tpstart,tpend;
float Timeuse;
Gettimeofday (&tpstart,null);
function ();
Gettimeofday (&tpend,null);
timeuse=1000000* (TPEND.TV_SEC-TPSTART.TV_SEC) +
Tpend.tv_usec-tpstart.tv_usec; Note the millisecond and the subtle, the wrong output is zero.
timeuse/=1000000;
printf ("Used time:%f\n", timeuse);
Exit (0);
}

The result of this program running on my computer is probably 0.03-0.04s

Linux Compute program Run time

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.