我在使用OpenMP的四核系统上使用4个线程时出现了加速问题。使用2个线程时,效率接近1,但是使用4个线程时,效率降低到一半,即运行时间与使用2个线程运行代码时大致相同。我在OpenMP论坛上进行搜索,发现之前存在类似的问题,这是由于Inter Turbo Boost技术引起的。请引用这篇文章http://openmp.org/forum/viewtopic.php?f=3&t=1289&start=0&hilit=intel+turbo+boost

因此,我尝试在我的机器的所有4个处理器上禁用Turbo Boost,但无法消除问题。

我仅从上面的链接中获取了基准代码。

我有一台DELL笔记本电脑,我的harware/OS信息摘要如下:

OS : Linux3.0.0.12-generic , Ubuntu
KDE SC Version : 4.7.1

Processor: Intel(R) Core(TM) i7-2620M CPU @ 2.70GHz

请让我知道其他可能导致我无法使用4个线程/核心的问题。作为附加信息。我检查了所有4个线程都在不同的内核上运行。

期待您的回答。

代码:
#include <stdio.h>
#include <omp.h>
#include <math.h>


double estimate_pi(double radius, int nsteps){

   int i;
   double h=2*radius/nsteps;
   double sum=0;
   for (i=1;i<nsteps;i++){
      sum+=sqrt(pow(radius,2)-pow(-radius+i*h,2));
      //sum+=.5*sum;
   }
   sum*=h;
   sum=2*sum/(radius*radius);
   //printf("radius:%f --> %f\n",radius,sum);
   return sum;


}

int main(int argc, char* argv[]){


   double ser_est,par_est;
   long int radii_range;
   if (argc>1) radii_range=atoi(argv[1]);
   else radii_range=500;

   int nthreads;
   if (argc>2) nthreads=atoi(argv[2]);
   else nthreads=omp_get_num_procs();

   printf("Estimating Pi by averaging %ld estimates.\n",radii_range);
   printf("OpenMP says there are %d processors available.\n",omp_get_num_procs());

   int r;
   double start, stop, serial_time, par_time;



   par_est=0;
   double tmp=0;
   ser_est=0;
   start=omp_get_wtime();
   for (r=1;r<=radii_range;r++){
      tmp=estimate_pi(r,1e6);
      ser_est+=tmp;
   }
   stop=omp_get_wtime();
   serial_time=stop-start;
   ser_est=ser_est/radii_range;

   omp_set_num_threads(nthreads);
   start=omp_get_wtime();
   #pragma omp parallel for private(r,tmp) reduction(+:par_est)
   for (r=1;r<=radii_range;r++){
      tmp=estimate_pi(r,1e6);
      par_est+=tmp;
   }
   stop=omp_get_wtime();
   par_time=stop-start;
   par_est=par_est/radii_range;

   printf("Serial Estimate: %f\nParallel Estimate:%f\n\n",ser_est,par_est);
   printf("Serial Time: %f\nParallel Time:%f\nNumber of Threads: %d\nSpeedup: %f\nEfficiency: %f\n",serial_time,par_time,nthreads,serial_time/par_time, serial_time/par_time/nthreads);


}

最佳答案

Core i7-2620M是具有HT的双核(因此有4个逻辑核)。 HT不会总是提高程序性能,而改进很大程度上取决于程序本身(对于某些占用大量内存的应用程序,它甚至可能降级)。您绝对不应该期望4倍的加速,因为它没有4个物理核心。

如果您有时间,值得从这里读一点:http://software.intel.com/en-us/articles/performance-insights-to-intel-hyper-threading-technology/

关于c++ - 使用OpenMP在四核系统上加速4个线程的问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12423885/

10-10 12:36