Extract 8 bit integer from __m512i data type (AVX-512)

66 Views Asked by At

Could not find equivalent of

int _mm_extract_epi8 (__m128i a, const int imm8)
int _mm256_extract_epi8 (__m256i a, const int index)

in the AVX-512 instruction set.

What is the best way to extract an 8 bit integer from __m512i variable from specified position?

0

There are 0 best solutions below