Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果变量是shared默认的(见这里),是否有必要在 openmp 指令中使用 shared 指令?
shared
正如您所指问题的答案所断言的那样,所有变量都是共享的,这并不完全正确。例如,for/ doloops 上的迭代变量是私有的。在并行区域内声明的变量是私有的。
for
do
因此,现在您会怀疑哪些变量是默认共享的,哪些是私有的。不,没有必要在defaultOpenMP 指令中添加子句。但通常,尤其是在使用 OpenMP 的早期步骤时,建议使用default(none)并明确说明所有变量的可访问性。
default
default(none)