OpenMP 程序的奇怪行为
我正在调试 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
恐怕你需要提供更多信息。
I am afraid that you need to give more information.