OpenMP pragma 的含义是:不要矢量化

发布于 2025-01-12 15:27:57 字数 94 浏览 0 评论 0原文

我有一个行程计数非常低的循环,其中矢量化没有效果,但编译器仍然对其进行矢量化。是否有一种可移植的方法来告诉编译器不要对循环进行矢量化,与#pragma omp simd 相反

I have a loop with a really low trip count where vectorization doesn't pay off, but the compiler vectorizes it nevertheless. Is there a portable way to tell a compiler not to vectorize a loop, an opposite of #pragma omp simd

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

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

发布评论

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

评论(1

得不到的就毁灭 2025-01-19 15:27:57

如果您有一个支持 OpenMP API 版本 5.1 的编译器,那么它应该接受这一点:

#pragma omp simd if(simd:0)
for (...) { ... }

然后应该禁用与 simd 构造关联的循环的矢量化。

请参阅 OpenMP 规范中的 simd 构造

If you have a compiler that supports the OpenMP API version 5.1, then it should accept this:

#pragma omp simd if(simd:0)
for (...) { ... }

That should then disable vectorization for the loop associated with the simd construct.

See simd Construct in the OpenMP specification.

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