You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do they all have 512-bit and 256-bit counterparts in AVX2?
The text was updated successfully, but these errors were encountered:
eriksjolund
changed the title
use __m256i instead of __m128i to double the SIMD vector length
Use __m256i instead of __m128i to double the SIMD vector length
Nov 19, 2016
eriksjolund
changed the title
Use __m256i instead of __m128i to double the SIMD vector length
Use __m512i or __m256i instead of __m128i to increase the SIMD vector length
Nov 19, 2016
The AVX2 call
_mm_blend_epi32
was introduced in the git commit
4f2b2c8
When starting to use AVX2 we could also double the SIMD vector length by using
__m256i
instead of the current
__m128i
Maybe we could even make the SIMD vector length four times bigger by starting to use
__m512i
Here is a list of the current intrinsic functions:
Do they all have 512-bit and 256-bit counterparts in AVX2?
The text was updated successfully, but these errors were encountered: