我的OpenMP
计划是这样的:
#include <stdio.h>
#include <omp.h>
int main (void)
{
int i = 10;
#pragma omp parallel lastprivate(i)
{
printf("thread %d: i = %d\n", omp_get_thread_num(), i);
i = 1000 + omp_get_thread_num();
}
printf("i = %d\n", i);
return 0;
}
使用gcc
进行编译并生成以下错误:
# gcc -fopenmp test.c
test.c: In function 'main':
test.c:8:26: error: 'lastprivate' is not valid for '#pragma omp parallel'
#pragma omp parallel lastprivate(i)
^~~~~~~~~~~
为什么OpenMP
禁止lastprivate
使用#pragma omp parallel
?
答案 0 :(得分:1)
lastprivate
的含义是将“关联循环的顺序最后一次迭代,或者词法最后section
构造[...]分配给原始列表项。”
因此,对于纯parallel
构造没有意义。使用诸如“退出并行构造的最后一个线程”之类的含义并不是一个好主意 - 这将是竞争条件。