1

我正在使用 C++ 和 OpenMP 来并行化算法以找到凸包。但我无法获得预期的加速。事实上,顺序算法更快。输入和输出点集存储在数组中。

您能否查看代码并让我知道更正?

Point *points = new Point[inp_size]; // contains the input
  int th_id;

  omp_set_num_threads(nthreads);
  clock_t t1,t2;
      t1=clock();
  #pragma omp parallel private(th_id)
  {
    th_id = omp_get_thread_num();
///////////// …. Only Function called ….///////////////////////////////////
    findParallelUCHWOUP(points,th_id+1, nthreads, inp_size);

  }
  t2=clock();
  float diff ((float)t2-(float)t1);
  float seconds = diff / CLOCKS_PER_SEC;
  std::cout << "Time Elapsed in seconds:" << seconds << '\n';

///////////////////////////////////////// /////////////

int findParallelUCHWOUP(Point iv[],int id, int thread_num, int inp_size){

    int numElems = inp_size/thread_num;
        int first = (id-1) * numElems;;
        int last;
        if(id == thread_num){
            last = inp_size-1;
        }
        else{
            last = id*numElems-1;
        }

        output[first]=iv[first];
          std::stack<int> s;
          s.push(first);
          int i=first+1;
        while(i<last){
            if ( crossProduct(iv, i, first, last) > 0){
                s.push(i);
                i++;
                break;
            }else{
                i++;
            }
        }

        if(i==last){
            s.push(last);
            return 0;
        }

        for(;i<=last;i++){
            if ( crossProduct(iv, i, first, last) >= 0){
                  while ( s.size()>1 && crossProduct(iv, s.top(), second(s), i) <= 0){
                      s.pop();
                  }
                  s.push(i);
            }

        }
          int count=s.size();
          sizes[id-1] = count;
          while(!s.empty()){
              output[first+count-1]=iv[s.top()];
              s.pop();
              count--;
          }

    return 0;
}

//////////在这些机器上测试过/////

顺序时间:0.016466 使用两个线程:0.022979 使用四个线程:0.035213 使用8个线程:0.03315

使用机器:Mac Book Pro 处理器:2.5 GHz Intel Core i5(至少 4 个逻辑核心) 内存:4GB 1600 MHz 编译器:Mac OSX 编译器

4

1 回答 1

1

问题是你计算时间的方式。实际上,您可以编写如下内容:

diff / (float) (CLOCKS_PER_SEC * nthreads)

这只是一个近似值(并不总是如此)。
CLOCKS_PER_SEC 代表所有内核的时钟总和......
你最好使用OpenMP特殊功能......

于 2013-06-16T21:27:03.537 回答