sse4 packed sum between int32_t and int16_t (sign extend to int32_t)
Advertisements I have the following code snippet (a gist can be found here) where I am trying to do a sum between 4 int32_t negative values and 4 int16_t values (that will be sign extend to int32_t). extern exit global _start section .data a: dd -76, -84, -84, -132 b: dw 406, 406, 406, 406… Read More sse4 packed sum between int32_t and int16_t (sign extend to int32_t)