Do you know any way to add with saturation 32 bits signed words using MMX/SSE assembler instructions? I can find 8/16 bits versions but no 32 bit ones.
Regards
|
feedback
|
|
You can emulate saturated signed adds by performing the following steps:
Unsigned, it's even simpler, see this stackoverflow posting In SSE2, the above maps to a sequence of parallel compares and AND/ANDN operations. No single operation, unfortunately. | |||
|
feedback
|