Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SIMD C++ library

Tags:

c++

gcc

simd

I use Visual Studio with DiretX XNA math library. Now, I use GNU compiler collection. Advise me a SIMD math library with a good documentation.

like image 337
itun Avatar asked May 22 '11 22:05

itun


3 Answers

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.

like image 72
Monkey Avatar answered Oct 19 '22 17:10

Monkey


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

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

like image 2
Akira Takahashi Avatar answered Oct 19 '22 18:10

Akira Takahashi


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

like image 1
Dr McKay Avatar answered Oct 19 '22 18:10

Dr McKay