Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any good C/C++ tutorials or examples for learning Intel SSE and AVX instructions?

I found few on Microsoft MSDN and Intel sites, but it would be great to understand it from the basics..

share|improve this question

2 Answers

There is some good stuff on Apple's developer site, e.g. SSE Performance Programming.

share|improve this answer

There is a nice introduction here

Code project SSE

Also if you have Microsoft DirectX SDK installed, the source from xnamath has lot of vector/matrix operations using sse intrinsics (check in the sdk include folder, xnamath.h, xnamathconvert.inl, xnamathmatrix.inl ...)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.