这两种 OpenMP 结构之间的差异

发布于 2024-11-15 15:51:44 字数 200 浏览 1 评论 0原文

如果我只有 1 个 for 循环而没有其他任何东西,是否有任何理由使用第二个构造?谢谢你!

#pragma omp parallel for
// for loop goes here


#pragma omp parallel  
{  
  #pragma omp for  
  // for loop goes here
}

Is there any reason to use 2nd construct if I have only 1 for loop and nothing else? Thank you!

#pragma omp parallel for
// for loop goes here


#pragma omp parallel  
{  
  #pragma omp for  
  // for loop goes here
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情感失落者 2024-11-22 15:51:44

对于大多数实现,第一个结构只有一个隐式障碍,而第二个结构可能有两个(取决于实现在消除冗余障碍方面的效果)。如果实现良好,您不应该看到两者之间有任何区别。

With most implementations the first structure will only have one implicit barrier, while the second may have two (depending on how good the implementation is at removing redundant barriers). If the implementation is good though, you shouldn't see any difference between the two.

往昔成烟 2024-11-22 15:51:44

我完全赞同 ejd 所说的。
我想补充一个事实,即可以使用 nowait 子句,以便线程在并行循环结束时不会同步。

I totally second what ejd said.
I would add the fact that one may use the nowait clause so that the threads do not synchronize at the end of the parallel loop.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文