SIMD C++ library

99封情书 提交于 2019-12-05 08:46:58

Eigen http://eigen.tuxfamily.org/index.php?title=Main_Page

It supports SIMD extensions out of the box, it is well documented, it is quite flexible, it provides a lot of quality implementation of linear algebra methods, and have all the overloaded operators goodness. I've used it for several science-related projects, was very happy, especially after playing with others libraries.

There is NT2 library. http://nt2.sourceforge.net/

This library has plan, proposal to Boost C++ Libraries.

How about built-in one? http://ds9a.nl/gcc-simd/

The Intel ICC compiler comes with an SSE-optimised math library called MKL.

Bullet Physics Engine has a small matrix math library optimized for SSE and PS3.

Another library that might be interesting to you is Intel Integrated Performance Primitives. This library is well optimized, but it is not free, and no source code is available.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!