OpenMP 程序的奇怪行为

发布于 2024-10-12 22:01:16 字数 350 浏览 0 评论 0原文

我正在调试 OpenMP 程序。它的行为很奇怪。

1) 如果一个简单程序 P(while(1) 循环)100% 占用一个内核,则 OpenMP 程序即使占用所有剩余内核也会暂停。一旦我终止程序 P,OpenMP 程序就会继续执行。

2)如果我将OMP_NUMBER_THREADS设置为32/16/8,OpenMP程序在情况1下可以成功执行。

我在 8 核 x64 机器和 32 核 Itanium 机器上进行了测试。前者使用 GCC 和 libomp。后者使用私有的 aCC 编译器和库。所以它不太可能与编译器/库有关。

您能帮忙指出造成这一场景的可能原因吗?为什么它会受到另一个程序的影响?

谢谢。

I'm debugging an OpenMP program. Its behavior is strange.

1) If a simple program P (while(1) loop) occupies one core 100%, the OpenMP program pauses even it occupies all remained cores. Once I terminate the program P, OpenMP program continues to execute.

2) The OpenMP program can execute successfully in situation 1 if I set OMP_NUMBER_THREADS to 32/16/8.

I tested on both 8-core x64 machines and 32-core Itanium machines. The former uses GCC and libomp. The later uses privately-owned aCC compiler and libraries. So it is unlikely related to compiler/library.

Could you help point out any possible reasons which may cause the scene? Why can it be affected by another program?

Thanks.

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

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

发布评论

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

评论(1

倾城花音 2024-10-19 22:01:16

恐怕你需要提供更多信息。

  • 您运行的操作系统是什么?
  • 当您使用 16 线程运行时,您是在 8 核还是 32 核机器上执行此操作?
  • 简单的 while(p) 程序在这个 while 循环中做什么?
  • OpenMP 程序正在做什么(一般而言 - 如果您不能具体说明的话)?
  • 您是否尝试过使用分析工具来查看 OpenMP 程序正在做什么?

I am afraid that you need to give more information.

  • What is the OS you are running on?
  • When you run using 16 threads are you doing this on the 8-core or the 32 core machine?
  • What is the simple while(p) program doing in this while loop?
  • What is the OpenMP program doing (in general terms - if you can't be specific)?
  • Have you tried using a profiling tool to see what the OpenMP program is doing?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文