1.6 KiB
1.6 KiB
title | author | date | wordtwit_post_info | categories | ||
---|---|---|---|---|---|---|
実行時間の測定 | kazu634 | 2009-05-24 |
|
|
気になったのでメモしておきますね:
#include <sys/time.h>
double gettimeofday_sec(){
struct timeval t;
gettimeofday(&t, NULL);
return (double)t.tv_sec + (double)t.tv_usec * 1e-6;
}
int main(){
double tstart, tend;
tstart = gettimeofday_sec(); //開始時間取得
/*処理*/
tend = gettimeofday_sec(); //終了時間取得
printf(“%10.20f”,tend – tstart); //処理時間表示
}