openmp(1)----计时

放肆的年华 提交于 2020-01-10 11:06:53

时间是用来评价一个算法或代码的重要指标。

clock_t 为时钟周期数,在并行程序中这种方式不能测量时间。

#include <time.h>
clock_t start,finish;  
start = clock();
finish = clock();
std::cout<<"完成需要 "<<finish - start<<"个时钟周期"<<std::endl;
std::cout<<"消耗时间为:"<<(finish - start)/CLOCKS_PER_SEC*1000<<"ms\n"<<std::endl;
// CLOCKS_PER_SEC 每秒德时钟周期数

double omp_get_wtime() 返回绝对时间,单位为s

 

#include<omp.h>
double start = omp_get_wtime( );
double end = omp_get_wtime( );

 

double  omp_get_wtick()   返回单个时钟周期的时间,s

#include "omp.h"
#include <stdio.h>

//获得一个时钟周期是多少秒
double wtick = omp_get_wtick( );
printf("wtick = %.16g\n1/wtick = %.16g\n", wtick, 1.0 / wtick);  // 每s的时钟周期数
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!