我想测量每个线程花在执行一段代码上的时间。我想看看我的负载平衡策略是否在工作人员中平均分配块。
通常,我的代码如下所示:

#pragma omp parallel for schedule(dynamic,chunk) private(i)
for(i=0;i<n;i++){
//loop code here
}

更新
我在gcc中使用openmp 3.1

最佳答案

您可以这样打印每个线程的时间(未测试,甚至未编译):

#pragma omp parallel
{
    double wtime = omp_get_wtime();
    #pragma omp for schedule( dynamic, 1 ) nowait
    for ( int i=0; i<n; i++ ) {
        // whatever
    }
    wtime = omp_get_wtime() - wtime;
    printf( "Time taken by thread %d is %f\n", omp_get_thread_num(), wtime );
}

nbnowaitthan删除barrier循环末尾的for,否则这将没有任何兴趣。
当然,使用适当的分析工具是一种更好的方法…

08-24 16:59