Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compile error with closing optimization option #16

Open
NickSong opened this issue Oct 12, 2019 · 0 comments
Open

Compile error with closing optimization option #16

NickSong opened this issue Oct 12, 2019 · 0 comments

Comments

@NickSong
Copy link

Mixer.hpp:239:74: error: macro "_mm_shuffle_epi32" passed 5 arguments, but takes just 2
dp = _mm_add_epi32(dp, _mm_shuffle_epi32(dp, shuffle<2, 3, 0, 1>::value));
should be modified to:
dp = _mm_add_epi32(dp, _mm_shuffle_epi32(dp, (shuffle<2, 3, 0, 1>::value)));

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant