I read four double-precision 64-bit (qword) floats from memory into ymm1:
vmovupd ymm1,[r11+r15]
Now I want an instruction that converts them to integer. I tried the following:
VCVTTPD2UQQ ymm0,ymm1
OR
VCVTTSD2SI ymm0,ymm1
Both instructions assemble and link, but both crash at runtime.
All of my research points to these two instructions. Is there a different instruction I haven't found yet to convert four qword floats to qword integer in ymm registers?
Thanks for any help.