gpt4 book ai didi

c++ - 使用 omp_set_num_threads() 将线程数设置为 2,但 omp_get_num_threads() 返回 1

转载 作者:IT老高 更新时间:2023-10-28 21:45:41 40 4
gpt4 key购买 nike

我有以下使用 OpenMP 的 C/C++ 代码:

    int nProcessors=omp_get_max_threads();
if(argv[4]!=NULL){
printf("argv[4]: %s\n",argv[4]);
nProcessors=atoi(argv[4]);
printf("nProcessors: %d\n",nProcessors);
}
omp_set_num_threads(nProcessors);
printf("omp_get_num_threads(): %d\n",omp_get_num_threads());
exit(0);

如您所见,我正在尝试根据命令行上传递的参数设置要使用的处理器数量。

但是,我得到以下输出:

argv[4]: 2   //OK
nProcessors: 2 //OK
omp_get_num_threads(): 1 //WTF?!

为什么 omp_get_num_threads() 不返回 2?!!!


如前所述,我在串行区域中调用 omp_get_num_threads(),因此该函数返回 1

但是,我有以下并行代码:

#pragma omp parallel for private(i,j,tid,_hash) firstprivate(firstTime) reduction(+:nChunksDetected)
for(i=0;i<fileLen-CHUNKSIZE;i++){
tid=omp_get_thread_num();
printf("%d\n",tid);
int nThreads=omp_get_num_threads();
printf("%d\n",nThreads);
...

哪个输出:

0   //tid
1 //nThreads - this should be 2!
0
1
0
1
0
1
...

最佳答案

omp_get_num_threads() 调用在代码的串行部分返回 1。见 Link

所以你需要有并行代码来获得正确的值,你的代码应该是这样的:

#include <iostream>
#include <omp.h>

int main (int argc, const char * argv[])
{
int nProcessors = omp_get_max_threads();

std::cout<<nProcessors<<std::endl;

omp_set_num_threads(nProcessors);

std::cout<<omp_get_num_threads()<<std::endl;

#pragma omp parallel for
for(int i = 0; i < 5; i++){
int tid = omp_get_thread_num();
std::cout<<tid<<"\t tid"<<std::endl;
int nThreads = omp_get_num_threads();
std::cout<<nThreads<<"\t nThreads"<<std::endl;
}

exit(0);
}

这段代码产生:

2

1
0 tid
2 nThreads
0 tid
2 nThreads
0 tid
2 nThreads
1 tid
2 nThreads
1 tid
2 nThreads

您似乎没有启用 open mp,或者您的循环不是可以被 openmp 并行化的形式

关于c++ - 使用 omp_set_num_threads() 将线程数设置为 2,但 omp_get_num_threads() 返回 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8969748/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com