Output running time (accurate to microseconds)

Source: Internet
Author: User

For code that requires performance, it is necessary to output the program running time and require high accuracy. The following code segment implements this function.

Note: It is only used in Linux because of <sys/time. h>.

1 # include <sys/time. h> 2 # include <iostream> 3 4 using namespace STD; 5 6 int main (INT argc, char ** argv) 7 {8 // time used for statistics 9 unsigned int untimeuse; 10 11 struct timeval ststarttime; 12 struct timeval stendtime; 13 14 gettimeofday (& ststarttime, null); 15 16 int I = 10000; 17 while (I --> 0 ); 18 19 gettimeofday (& stendtime, null); 20 untimeuse = 1000000 * (stendtime. TV _sec-ststarttime. TV _sec) + 21 stendtime. TV _usec-ststarttime. TV _usec; 22 23 cout. SETF (ios_base: fixed); 24 cout <"use time:" <untimeuse/1000000.0 <"Sec" <Endl; 25 26 return 0; 27}

Output result:

Output running time (accurate to microseconds)

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.