[완료]프로그램 수행 시간 측정 문제..

toughguy의 이미지

안녕하세요,
프로그램 수행 시간을 측정하려 하는데요~
게시판에 있는 모든 방법을 써도 잘 나오지 않네요 ..
무엇이 문제일까요~?

**코드

#include
#include
#include
#include
using namespace std;

void timeVal();
void timeSpec();
int main()
{
cout << "Time Val -- " << endl;
timeVal();
cout << "Time Spec -- " << endl;
timeSpec();
}

void timeSpec()
{
struct timespec tp;
int rs = clock_gettime(CLOCK_REALTIME,&tp);
cout << rs << endl;
sleep(2);
rs = clock_gettime(CLOCK_REALTIME,&tp);
cout << rs << endl;

}

void timeVal()
{
struct timeval start, end;
gettimeofday(&start,NULL);
cout << start.tv_sec << endl;
cout << start.tv_usec << endl;
sleep(2);
gettimeofday(&end,NULL);
cout << end.tv_sec << endl;
cout << end.tv_usec << endl;
printf("%ld \n",end.tv_usec - start.tv_usec);
}

위에 대한 결과값은 아래와 같습니다.

Time Val --
1199247849
468632
1199247851
469288
656
Time Spec --
0
0

sleep을 2초이기 때문에, timeval의 경우 sec값은 정상인듯 한데,
nsec값은 비정상인듯 하네요..

무엇이 문제일까요 ㅠ_ㅠ

도와주세요~~

neogeo의 이미지

clock_gettime(), clock_settime() and clock_getres() return 0 for suc-
cess, or -1 for failure (in which case errno is set appropriately).

RS 를 아무리 찍으셔 봐야 0 이 나올것은 자명합니다. ( 위는 Man Page 입니다. )

timeVal() 처럼 구조체의 내용물을 출력해보시면 잘 나올 것 입니다.

struct timespec tp; 로 선언하셨으니

tp.tv_nsec 값을 참고하시면 금방 해결이 되실 것 입니다.

Neogeo - Future is Now.

Neogeo - Future is Now.

toughguy의 이미지

감사합니다. 윗분 글을 보고 이리 저리 생각하니 해결되는군요~
혹 저와 같은 삽질하시는 분들을 위해 참고로..
timespec 이란 구조체 는 tv_sec 와 tv_nsec 란 맴버 변수를 가지고 있네요.
clock_gettime()으로 시간을 가져오면,
그때 당시의 sec(초단위) 와 nsec(나노초) 가 timespec에 저장이 됩니다.

만약 특정구간 사이의 시간을 측정할려면,
timespec start,end;
clock_gettime(CLOCK_REALTIME,&start);

... 특정기능수행

clock_gettime(CLOCK_REALTIME,&end);

float time_dif = (end.tv_sec - start.tv_sec) + ((end.tv_nsec - start.tv_nsec) / 1000000000 );
printf(" %.2f",time_dif);

이런석으로 구현 하면 되네요^^

조언감사드립니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.