Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我看到了一些 gcc 的资源,但没有看到 Visual Studio 的资源。
任何人都有参考资料、例子和技巧的宝库吗?
我不认为 VC++ 做循环向量化。如果你想要它,你可能不得不使用Intel 的编译器。请注意,它将作为插入式替代插件插入到 Visual Studio。
另请参阅此问题:
除了 gcc 还有哪些编译器可以向量化代码?
更新:据报道,2012 版本现在进行自动矢量化,请参阅:
内部自动矢量化,n 中的 1
VC++ 不支持向量化。但是,SSE 支持是通过内在函数启用的。请查看此MSDN帖子。