I am wondering if it is possible to do something along the lines of:
vpcmpeqb %ymm16, %ymm17, %ymm16
Trying to do this an compiling with gcc I get:
Assembler messages: Error: unsupported instruction `vpcmpeqb'
AFAICT this is impossible felixcloutier says that the only EVEX prefix instructions for cmpeq
have a mask destination but possibly there is something I am missing or a way to do this directly with the byte encoding.
Thanks!