如何在使用 GCC 时禁用矢量化?
我正在使用以下命令编译我的代码:
gcc -O3 -ftree-vectorizer-verbose=6 -msse4.1 -ffast-math
这样所有的优化都已启用。
但我想禁用矢量化,同时保留其他优化。
I am compiling my code using following command:
gcc -O3 -ftree-vectorizer-verbose=6 -msse4.1 -ffast-math
With this all the optimizations are enabled.
But I want to disable vectorization while keeping the other optimizations.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
大多数 GCC 开关都可以与
no
前缀一起使用来禁用其行为。尝试使用-fno-tree-vectorize
(在命令行上的-O3
之后)。Most of the GCC switches can be used with a
no
prefix to disable their behavior. Try with-fno-tree-vectorize
(after-O3
on the command line).您还可以使用优化函数属性或编译指示有选择地启用和禁用矢量化
http:// gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
http://gcc.gnu.org/onlinedocs/gcc/Function-Specific -Option-Pragmas.html
例如
you can also selectively enable and disable vectorization with the optimize function attributes or pragmas
http://gcc.gnu.org/onlinedocs/gcc/Function-Attributes.html
http://gcc.gnu.org/onlinedocs/gcc/Function-Specific-Option-Pragmas.html
e.g.
太好了,现在 gcc 在矢量化方面变得更加积极,例如
在上面发布的情况下,删除
restrict
用于完成这项工作,但现在 g++ 6.0 无法通过删除__restrict 来阻止矢量化
。Excellent, now that gcc has become more aggressive at vectorizing e.g.
In the case posted above, removing
restrict
used to do the job, but now g++ 6.0 can't be stopped from vectorizing by removing__restrict
.