Hacker News new | ask | show | jobs
by user2994cb 3475 days ago
Harder to vectorize 64-bit arithmetic?
1 comments

was going to say this. It probably only does SSE and not SSE2. Therefore vectorization only happens for 32 bit ints.
Seems to need -mavx2 to really go to town with 64 bit: https://godbolt.org/g/6EFYeY
Thank you both, I appreciate the insight!