我在使用 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 个处理器上禁用涡轮增压,但无法摆脱这个问题。
我只从上面的链接中获取了基准代码。
我有一台戴尔笔记本电脑,我的硬件/操作系统信息摘要如下:
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);
}