I would like to implement the following operation on 8 bit elements:
_a = _b * 8 + _c
with vectors. For the plus there is obviously _mm256_add_epi8 but i was not able to find a _mm256_mul_epi8 or something to multiply with 8 bit elements. I also tried to find a function to left shift by 3, but no luck.
Thanks for helping!