Created
December 19, 2016 06:47
-
-
Save ttsugriy/eef013cc8dbdbd22abe5004a1a43948e to your computer and use it in GitHub Desktop.
Vectorized element summation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
movdqa xmm1, xmm0 | |
psrldq xmm1, 8 | |
paddd xmm0, xmm1 | |
movdqa xmm1, xmm0 | |
psrldq xmm1, 4 | |
paddd xmm0, xmm1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment