gpt4 book ai didi

c++ - OpenMP,for 循环内部部分

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:15:56 26 4
gpt4 key购买 nike

我想运行以下代码(如下)。我想产生两个独立的线程,每个线程都运行一个并行的 for 循环。不幸的是,我得到一个错误。显然,并行 for 不能在 section 内产生。怎么解决?

#include <omp.h>
#include "stdio.h"

int main()
{

omp_set_num_threads(10);

#pragma omp parallel
#pragma omp sections
{
#pragma omp section
#pragma omp for
for(int i=0; i<5; i++) {
printf("x %d\n", i);
}

#pragma omp section
#pragma omp for
for(int i=0; i<5; i++) {
printf(". %d\n", i);
}
} // end parallel and end sections
}

错误:

main.cpp: In function ‘int main()’:
main.cpp:14:9: warning: work-sharing region may not be closely nested inside of work-sharing, critical, ordered, master or explicit task region [enabled by default]
main.cpp:20:9: warning: work-sharing region may not be closely nested inside of work-sharing, critical, ordered, master or explicit task region [enabled by default]

最佳答案

这里必须使用嵌套并行。 sections 中的omp for 的问题在于范围内的所有线程都必须参与omp for,而且它们显然不'-它们被分成几部分。所以你必须引入函数,并在函数中进行嵌套并行。

#include <stdio.h>
#include <omp.h>

void doTask1(const int gtid) {
omp_set_num_threads(5);
#pragma omp parallel
{
int tid = omp_get_thread_num();
#pragma omp for
for(int i=0; i<5; i++) {
printf("x %d %d %d\n", i, tid, gtid);
}
}
}

void doTask2(const int gtid) {
omp_set_num_threads(5);
#pragma omp parallel
{
int tid = omp_get_thread_num();
#pragma omp for
for(int i=0; i<5; i++) {
printf(". %d %d %d\n", i, tid, gtid);
}
}
}


int main()
{
omp_set_num_threads(2);
omp_set_nested(1);

#pragma omp parallel
{
int gtid = omp_get_thread_num();
#pragma omp sections
{
#pragma omp section
doTask1(gtid);

#pragma omp section
doTask2(gtid);
} // end parallel and end sections
}
}

关于c++ - OpenMP,for 循环内部部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7916411/

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