Avx2 has 256 bit vector registers ymm0-ymm15, these registers can deal with 4 integer of 64 bit, or 8 integer of 32bit, or 16 integer of 16 bit. So the parallelism of one avx2 instruction is 4, 8 or 16. My question is: if I want to operate integers which are not multiple times of the parallelism, for example: There are 25 integers, each of them is 16 bit, if I load 16 of them into ymm0, how to deal with the rest 9 integer, since they can't fit exactly into one 256 bit vector register.