[완료]프로그램 수행 시간 측정 문제..
안녕하세요,
프로그램 수행 시간을 측정하려 하는데요~
게시판에 있는 모든 방법을 써도 잘 나오지 않네요 ..
무엇이 문제일까요~?
**코드
#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값은 비정상인듯 하네요..
무엇이 문제일까요 ㅠ_ㅠ
도와주세요~~
clock_gettime(),
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.
감사합니다.^^
감사합니다. 윗분 글을 보고 이리 저리 생각하니 해결되는군요~
혹 저와 같은 삽질하시는 분들을 위해 참고로..
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);
이런석으로 구현 하면 되네요^^
조언감사드립니다.
댓글 달기